Spring Projects Issues
Spring Projects Issues
**[John Blum](https://jira.spring.io/secure/ViewProfile.jspa?name=jblum)** opened **[DATACASS-273](https://jira.spring.io/browse/DATACASS-273?redirect=false)** and commented Both the `CassandraTemplate` and `CqlTemplate` make use of the Template design pattern with anonymous callbacks (temporary objects) that, when called under load, can reck...
**[David Webb](https://jira.spring.io/secure/ViewProfile.jspa?name=dwebb)** opened **[DATACASS-36](https://jira.spring.io/browse/DATACASS-36?redirect=false)** and commented Create overload convenience methods for Passing in JSON String. This JSON String can be mapped to a Object\ to generate the appropriate query operation...
**[Jens Rantil](https://jira.spring.io/secure/ViewProfile.jspa?name=jensrantil)** opened **[DATACASS-188](https://jira.spring.io/browse/DATACASS-188?redirect=false)** and commented Thought I had reported this previously, but couldn't find any mention of it. https://github.com/spring-projects/spring-data-cassandra/blob/ff41674809f2fa27362d361ad78730da1d6ebbd8/spring-data-cassandra/src/main/java/org/springframework/data/cassandra/config/CassandraSessionFactoryBean.java#L99 mentions a TODO for this, so it does not seem...
**[ocristian](https://jira.spring.io/secure/ViewProfile.jspa?name=JIRAUSER50513)** opened **[DATAREDIS-1227](https://jira.spring.io/browse/DATAREDIS-1227?redirect=false)** and commented _LettuceConnetionFactory_ has a property to eager initialize, _afterPropertiesSet()_, _StatefulRedisConnection_ but it dosen't work for **StatefulRedisClusterConnection**. Cluster connection can take more time to be ready, it...
**[Michael Gmeiner](https://jira.spring.io/secure/ViewProfile.jspa?name=gmeiner.m)** opened **[DATAREDIS-831](https://jira.spring.io/browse/DATAREDIS-831?redirect=false)** and commented I do not find any support of using the RedisRepository feature with ReactiveCrudRepository. For example the following using: ```java @Repository interface BookRepo : ReactiveCrudRepository...
**[Salil Gandhi](https://jira.spring.io/secure/ViewProfile.jspa?name=salilgandhi)** opened **[DATAREDIS-725](https://jira.spring.io/browse/DATAREDIS-725?redirect=false)** and commented The queries/methods does not support IN clause for Redis --- **Reference URL:** https://stackoverflow.com/questions/53264718/java-lang-illegalargumentexception-in-1-isin-inis-not-supported-for-redis
**[William Hoyle](https://jira.spring.io/secure/ViewProfile.jspa?name=teppic)** opened **[DATAREDIS-235](https://jira.spring.io/browse/DATAREDIS-235?redirect=false)** and commented Template callbacks, for example SessionCallback, only have return type parameters. This leads to some unnecessary casts. Also, the callback methods have type parameters with...
**[Brian Marcey](https://jira.spring.io/secure/ViewProfile.jspa?name=brian%20marcey)** opened **[DATAREDIS-570](https://jira.spring.io/browse/DATAREDIS-570?redirect=false)** and commented The Redis documentation states that "if a key expires while the application is down the expiry event will not be processed which may lead...
**[Kevin Wang](https://jira.spring.io/secure/ViewProfile.jspa?name=zwang)** opened **[DATAREDIS-1061](https://jira.spring.io/browse/DATAREDIS-1061?redirect=false)** and commented Simple test case: ```java @SpringBootApplication @EnableMapRepositories @EnableRedisRepositories public class DemoApplication { @Autowired private RedisConverter redisConverter; public static void main(String[] args) { SpringApplication.run(DemoApplication.class, args); }...
**[Greg Turnquist](https://jira.spring.io/secure/ViewProfile.jspa?name=gregturn)** opened **[DATAREDIS-428](https://jira.spring.io/browse/DATAREDIS-428?redirect=false)** and commented Listener configuration in Spring Data Redis requires always to define a `MessageListener` because Spring Data Redis has no built-in support for an annotation-driven configuration...