architecture - Java framework to store relational data in Redis -


is there java framework store relational data in redis? simple use cases e.g:

  • 1 article n comments – sorted comment creation date.

there multiple options have:

  1. johm (object hash mapper, https://github.com/xetorthio/johm)
  2. hibernate ogm redis (5.0.beta, tech preview https://docs.jboss.org/hibernate/ogm/5.0/reference/en-us/html/ch15.html)
  3. spring data redis key-value (https://github.com/spring-projects/spring-data-redis/pull/156, https://github.com/christophstrobl/spring-data-keyvalue-redis)

johm quite mature whereas hibernate ogm redis quite new.

hth, mark

update

  • added link spring data redis key-value pr

Comments