JNSEDB - Java NoSql Embeddable Database
If you need simple, persistable, fast and embeddable java nosql database you can use jnsedb just like this:
String dbDir = System.getProperty("user.dir") + "\.mydb";
String database = "mydatabase";
JnsedbManager dbManager = new JnsedbEmbeddedServer(dbDir).startup().getManager(database);
// store new entity
dbManager.store(myJavaObject);
// loads (lazy) all stored objects of class MyJavaObject
Collection<MyJavaObject> allMyJavaObjects = dbManager.loadAll(MyJavaObject.class);
// loads object of class MyJavaObject stored with id = 1
dbManager.load(MyJavaObject.class, 1);
// delete object of class MyJavaObject stored with id = 1
dbManager.delete(MyJavaObject.class, 1);
Features:
* Simple to use
* Fast
* Persistable
* Embeddable
* Index is cached in memory
* Loaded objects can be cached in memory
* Serialization using jackson, jackson annotations are allowed (@JsonInclude, @JsonProperty etc)
Looking for some programs similar to JNSEDB - Java NoSql Embeddable Database? Here are the top-recommended programs we found. Let's take a look if there's anything out there that helps you on whatever platform you're using.
Apache CouchDB is a distributed, fault-tolerant and schema-free document-oriented database accessible via a RESTful HTTP / JSON API. It includes incremental map / reduce...
Features:
Add your reviews & share your experience when using JNSEDB - Java NoSql Embeddable Database to the world. Your opinion will be useful to others who are looking for the best JNSEDB - Java NoSql Embeddable Database alternatives.
Popular Alternatives
iOS Alternatives
Android Alternatives
Copyright © 2021 TopAlter.com
Sites we Love: AnswerBun, MenuIva, UKBizDB, Sharing RPP