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.
Recently, The similer database FloraDB has migrated to ClorographDB and now it is a part of Clorabase.
- About Graph data structure
- About Tree data struture
- What is Graph database
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'
}
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>
Javadocs(Not needed)- Database guide
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 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.
A accountless backend for android apps.