Hello together,
I'm just playing around with the Redis protocol a bit, but found that
it's impossible to write values > 8-9kb
I get the following exceptions:
https://gist.github.com/wolframite/33b9913bc5bcc09406db4c4115cbf13e
My ignite setup looks fairly simple:
IgniteConfiguration config = new IgniteConfiguration();
CacheConfiguration redisCacheConfig = new
CacheConfiguration("redis-ignite-internal-cache-0");
redisCacheConfig.setAtomicityMode(CacheAtomicityMode.ATOMIC);
redisCacheConfig.setCacheMode(CacheMode.REPLICATED);
config.setCacheConfiguration(redisCacheConfig);
Would be cool if someone could look into that... I can also open a JIRA
bug ticket, if it's not a known problem.
Cheers
Wolfram