Clorabase / ClorographDB

Clorograph is an embedded NoSQL graph database by Clorabase for java apps. It comes with flexible data models, like graphs and tress. Build giant network using this database with it's easy syntax

Home Page:https://nosqls.netlify.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

clorographDB

Clorograph DB ~ A graph nosql database

This is another nosql database from clorabase. In this database, data is stored in form of graphs and trees. If you don't know what these are, you might not have completed DSA yet :-) , Fortunetly, the database is so simple to use that your knowledge of DSA is not required. But knowing about graphs and trees will help you to organise your data is a more good way.

banner

๐Ÿ“ข Great announcement

Recently, The similer database FloraDB has migrated to ClorographDB and now it is a part of Clorabase.

๐Ÿ“— Acknowledgement

โ„น๏ธ Implementation

version

For Gradle

Add it in your root build.gradle at the end of repositories:

	allprojects {
		repositories {
			...
			maven { url 'https://jitpack.io' }
		}
	}

Add the depencdency:

	dependencies {
	     implementation 'com.github.ErrorxCode:ClorographDB:JITPACK-TAG'
	}

For maven

Add it in your root build.gradle at the end of repositories:

	<repositories>
		<repository>
		    <id>jitpack.io</id>
		    <url>https://jitpack.io</url>
		</repository>
	</repositories>

Add the depencdency:

	<dependency>
	    <groupId>com.github.ErrorxCode</groupId>
	    <artifactId>ClorographDB</artifactId>
	    <version>Tag</version>
	</dependency>

๐Ÿ“ Documentation

Every method name describes what it does, So they don't need javadocs. However, it you want to see the detailed desription, you can hover over the method name (intellij) for seeing the javadocs comments.

โš’๏ธ Contribution

Contribution is always welcome. What you can do is you can impliment more types of Trees & Graphs. There are interface for both type of implimentation. N-Array tree, Bi-directional graph, Realtional/Simple graph are some types of Data structure that is already present in the database, Or you can add more fast searching algorithim if you know. You could even replace the existing one if you finds a better then that.

๐Ÿ’– Powered by

A accountless backend for android apps.

About

Clorograph is an embedded NoSQL graph database by Clorabase for java apps. It comes with flexible data models, like graphs and tress. Build giant network using this database with it's easy syntax

https://nosqls.netlify.app

License:Apache License 2.0


Languages

Language:Java 100.0%