微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

JOAFIP Java对象持久化框架

程序名称:JOAFIP

授权协议: 未知

操作系统: 跨平台

开发语言: Java

JOAFIP 介绍

JOAFIP (java data object persistence in file ) 使得你可以使用文件系统来保存数据对象,而不是数据库

主要特点:

  • easy to use
  • guarantees all ACID properties
  • object oriented, write your model, store it. Do not need query language, juste navigate in your model.
  • multi data access session ( multi-Thread, transactional data store )
  • save all objects of object graph starting from a root object to file system, one heap file record by object instance
  • lazy loading of object:
    • make able to not waste memory with large object graph when only need to access to some of them.
    • manage more object than memory can contains
    • about proxy for lazy load
  • manage enum state persistence
  • crash safe, may accept JVM stop at any time even if write in file ( only the last commit is lost)
  • file corruption detection
  • garbage collector for file data record that will never be accessed
  • The object that can be persited are POJO that not needs to implement Serializable, but there is some conditions
  • Possibility to store serialization of instance of class in one data record. can be compreRSSed or not

JOAFIP 官网

http://joafip.sourceforge.net/

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐