spring-data-redis
spring-data-redis copied to clipboard
Provides support to increase developer productivity in Java when using Redis, a key-value store. Uses familiar Spring concepts such as a template classes for core API usage and lightweight repository...
The redis server configuration looks like: ` "password": "aaaaaaaa", "hostname": "10.*.64.20", "port": 6378, "uri": "rediss://:aaaaaaa@10.*.64.20:6378", "cluster_mode": false, "tls": { "server_ca": "-----BEGIN CERTIFICATE-----\nMIIDnTCCAoWgAwIBAgIBADANBgkqhkiG9w0BAQsFADCBhTEtMCsGA1UELhMkN2Y1\nYjhhMDYtZGVkZi00NWZjLTkxN2YtNThlOTA0ZDhjZTMzMTEwLwYDVQQDEyhHb29n\nbGUgQ2xvdWQgTWVtb3J5c3RvcmUgUmVkaXMgU2VydmVyIENBMRQwEgYDVQQKEwtH**** }` I just used the spring redis 2.7.*...
version: 2.7.x org.springframework.data.redis.core.DefaultSetOperations#randomMembers // 这个 -count 是啥意思? , 如果set中有1条数据, count值为 10, 那么会返回 10条一样的数据 // What does this count mean, If there is 1 piece of data in the set and...
Pub-Sub Race conditions on high load - Subscription has been unsubscribed and cannot be used anymore
After having a high load, the redis connections get closed automatically and error "Subscription has been unsubscribed and cannot be used anymore" is thrown. We use the pub/sub event. Bypass:...
This is something I noticed shortly after opening #2229 but failed to report it back then. On a project I worked at that time, we wanted to reduce the number...
**[Kyle Cronin](https://jira.spring.io/secure/ViewProfile.jspa?name=kylecronin@adp)** opened **[DATAREDIS-858](https://jira.spring.io/browse/DATAREDIS-858?redirect=false)** and commented `RedisCache` should allow sub classes to define the TTL duration based on the cache key or value for use cases where the TTL is...