Select your language

Home arrow-right ... arrow-right Database Software arrow-right DBMS Software (Database Management Systems) arrow-right JNSEDB - Java NoSql Embeddable Database

We've compiled a list of 8 free and paid alternatives to JNSEDB - Java NoSql Embeddable Database. The primary competitors include ZoomInfo Community Edition, MongoDB. In addition to these, users also draw comparisons between JNSEDB - Java NoSql Embeddable Database and CouchDB, H2 Database Engine, HSQLDB. Also you can look at other similar options here: Database Software, DBMS Software (Database Management Systems).


ZoomInfo Community Edition is a database of millions of B2B contact profiles that you can access in exchange for providing ZoomInfo business contacts. The database of hundreds of thousands of contacts is updated every day to ensure it is up-to-date.

MongoDB
Free Open Source

The most popular database for modern apps

CouchDB
Free Open Source

Apache CouchDB is a distributed, fault-tolerant and schema-free document-oriented database...

HSQLDB
Free Open Source

HSQLDB (Hyper Structured Query Language Database) is a relational database management system...

CouchBase
Free Open Source

Couchbase is the NoSQL database market share leader, with production deployments at AOL, Deutsche...

CockroachDB
Free Open Source

Cockroach is a distributed key/value datastore which supports ACID transactional semantics and...

Azure DocumentDB is a NoSQL document database service designed from the ground up to natively...

JNSEDB is simple, persistable, fast and embeddable java nosql database dedicated to small...

JNSEDB - Java NoSql Embeddable Database Platforms

tick-square Linux
tick-square Windows

JNSEDB - Java NoSql Embeddable Database Overview

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)

JNSEDB - Java NoSql Embeddable Database Features

tick-square Database
tick-square Java
tick-square Embeddable

Top JNSEDB - Java NoSql Embeddable Database Alternatives

Share your opinion about the software, leave a review and help make it even better!

JNSEDB - Java NoSql Embeddable Database Categories

DBMS Software (Database Management Systems)

JNSEDB - Java NoSql Embeddable Database Tags

json nosql

Suggest Changes

Your Feedback

Select a rating
Please select a rating

Your vote has been counted.

Do you have experience using this software?