I'm using java with lettuce redis client. I have a local Redis instance and I'm reading a file and put 400,000 entries into a hash map. But after the end of the mset
process there were no keys/values added into the redis store. I realized the problem is with the size of the map entries.
It's working when the map size is less than 50,000 entries.
Is there a way to increase this size or should I send this map as chunks?