用于在Redis中存储关系数据的Java框架

时间:2016-01-29 09:14:23

标签: java architecture redis nosql

是否有用于在Redis中存储关系数据的Java框架?用于简单用例的东西,例如:

  • 1篇文章到N条评论 - 按评论创建日期排序。

2 个答案:

答案 0 :(得分:5)

您有多种选择:

  1. jOHM(对象哈希映射器,https://github.com/xetorthio/johm
  2. Hibernate OGM Redis(5.0.Beta,技术预览https://docs.jboss.org/hibernate/ogm/5.0/reference/en-US/html/ch15.html
  3. Spring Data Redis键值(https://github.com/spring-projects/spring-data-redis/pull/156https://github.com/christophstrobl/spring-data-keyvalue-redis
  4. jOHM非常成熟,而Hibernate OGM Redis则相当新颖。

    HTH,马克

    <强>更新

    • 添加了Spring Data Redis Key-Value PR
    • 的链接

答案 1 :(得分:0)

以下是good article框架中介绍的基于Redis的Live Objects {/ 3}。