spring-io / pivotal-cla

Apache License 2.0
10 stars 16 forks source link

Switch to lettuce Redis driver #124

Open mp911de opened 8 years ago

mp911de commented 8 years ago

Jedis requires a connection per concurrent request. The number of connections grows with the number of concurrent requests which can exhaust connection limits.

lettuce is a thread-safe driver that allows operating multiple threads with one connection. Spring Cloud Connector will provide with 1.2.4 configuration support for lettuce.

Depending on the experience with lettuce on PCF, we should also update the Spring Session docs and add examples how to configure Spring Session with lettuce.