↧
Answer by chappalprasad for How to manage Expiration of Redisson nested Objects
Here is how addressing it (Getting List from A Instance, assigning to RList)- RList<> = (RList<>) a.getListOfB() Mark RList expirable in addition to A and B Instances.
View ArticleHow to manage Expiration of Redisson nested Objects
I am using Redisson library to manage data in redis and have following POJO's (leaving get/set/constructor here). @REntity Class A { @RId String id; .... List<B> listOfB; } @REntity class B {...
View Article