Why there is no batchSize in RMapCache.getAll(keys) unlike RMapCache.putAll? #5880
debraj-work
started this conversation in
General
Replies: 2 comments 1 reply
-
|
The same is asked in StackOverflow also. |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
At the moment you need to split input keys into chunks manually. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am new to Redis and I am exploring Redisson as a Java client library for use.
Can someone let me know why there is no
batchSizeinRMapCache.getAll(keys)unlikeRMapCache.putAll? DoesRMapCache.getAll()internally do some batching while getting the keys from Redis? If not what is the recommended way to dogetAllwhen there are a lot of elements inkeysset? Do I have to manually split thekeysinto small batches and then make multiple invocations ofRMapCache.getAll()?Beta Was this translation helpful? Give feedback.
All reactions