- Update Spring IO plugin to resolve binary incompatability for tests
- Update Dependency Management Plugin which is required for Spring IO
plugin update
- Update to Spring Boot 1.5.0.RC1. Necessary because new dependency
management plugin does not work with Boot 1.4.x
Fixes gh-708
Favor lettuce because of multiplexing and improved scalability.
Using lettuce requires a fixed number of connections hence using
lettuce improves application scalability.
Fixes gh-652
This issue is a result of moving EmbeddedRedisConfiguration to its own
package in 865e381c7c.
Now we explicitly add EnableEmbeddedRedis to the configuration.
Fixes gh-191
This prevents the embedded redis from being picked up in ComponentScan
in any of the samples unless the @EnableEmebeddedRedis annotation is used.
Polish gh-184
Previously there was a possibility that Session to WebSocket mapping was
leaked if keyspace notifications were not enabled in Redis.
To resolve this the RedisHttpSessionConfiguration now ensures that Redis
is configured to enable Keyspace notifications.
Fixes gh-76 gh-81