When Im using Update.push in a nested collection
Update update = new Update().push("nodeActivities.$.activities",activity);
the Activity pojo is add correctly to activities collection but...
Type: Posts; User: yukatan; Keyword(s):
When Im using Update.push in a nested collection
Update update = new Update().push("nodeActivities.$.activities",activity);
the Activity pojo is add correctly to activities collection but...
We are using the last builds from the repositorys with QueryDSL 2.5
We have a POJO as Mongo entity with a String as id property.
The problem is that when we insert the entity with the id...
The solution is to execute the code in a SessionCallback Object
template.execute(new SessionCallback() {
@Override
public Object execute(RedisOperations operations)...
Hi,
I have a problem with the RedisTemplate class when I try to use it in a multi-thread envirotment. In the Spring Data Redis documentation I can read that the class is thread-safe, but when I...