John Blum
John Blum
This already somewhat exists since SSDG already included a [SpringSessionGemFireConfigurer](https://docs.spring.io/autorepo/docs/spring-session-data-geode-build/2.2.0.M1/api/org/springframework/session/data/gemfire/config/annotation/web/http/support/SpringSessionGemFireConfigurer.html) interface for such concerns. However, I do see that the [o.s.s.config.SessionRepositoryCustomizer](https://github.com/spring-projects/spring-session/blob/master/spring-session-core/src/main/java/org/springframework/session/config/SessionRepositoryCustomizer.java) is slightly different by design too. Will add GemFire/Geode-specific...
Consider support for `copyOnRead` semantics provided by SSDG along with ability to make deep copies.
Currently, the way to do this with either Apache Geode, or Pivotal GemFire, is... given a reference to the `GemFireCache`, a user would set [`GemFireCache.setCopyOnRead(:boolean)`](http://geode.apache.org/releases/latest/javadoc/org/apache/geode/cache/GemFireCache.html#setCopyOnRead-boolean-) to `true`. This is also...
What is the mapping returned by [resolveIndexesFor()](https://github.com/spring-projects/spring-session/blob/master/spring-session-core/src/main/java/org/springframework/session/IndexResolver.java#L37) in the `IndexResolver` mean? It is a `String` to `String` mapping but I am not sure I am following what the `String` key...
Take @dturanski's example into consideration: https://github.com/dturanski/geode-sandbox