JNSEDB - Java NoSql Embeddable Database icon
JNSEDB - Java NoSql Embeddable Database icon

JNSEDB - Java NoSql Embeddable Database

JNSEDB is simple, persistable, fast and embeddable java nosql database dedicated to small applications. This database can be embedded to any java application without time wasting configuration. Add maven requirement and start using database.

Cost / License

  • Free
  • Open Source

Platforms

  • Windows
  • Linux
-
No reviews
0likes
0comments
0news articles

Features

Suggest and vote on features
  1.  Embeddable

JNSEDB - Java NoSql Embeddable Database News & Activities

Highlights All activities

Recent activities

No activities found.

JNSEDB - Java NoSql Embeddable Database information

  • Developed by

    ITAdvanced
  • Licensing

    Open Source (Apache-2.0) and Free product.
  • Written in

  • Alternatives

    10 alternatives listed
  • Supported Languages

    • English

AlternativeTo Category

Development

GitHub repository

  •  1 Stars
  •  1 Forks
  •  0 Open Issues
  •   Updated  
View on GitHub

Popular alternatives

View all
JNSEDB - Java NoSql Embeddable Database was added to AlternativeTo by tasksIT on and this page was last updated .
No comments or reviews, maybe you want to be first?
Post comment/review

What is JNSEDB - Java NoSql Embeddable Database?

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)

Official Links