Can I Store Java Objects In Redis?
Can I Store Java Objects In Redis? There is no direct way to store a Java object as value in redis, however one can store and get an java object as byte[] and the Object can be to/from converted to byte[] array using ByteBuffer. This can be used to even reduce memory usage on redis