Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/florent37/android-nosql
Lightweight, simple structured NoSQL database for Android
https://github.com/florent37/android-nosql
android cassandra cassandra-database data db elastic firebase hadoop local mongo mongodb nosql path preferences saver shared simple sql uri
Last synced: about 1 month ago
JSON representation
Lightweight, simple structured NoSQL database for Android
- Host: GitHub
- URL: https://github.com/florent37/android-nosql
- Owner: florent37
- License: apache-2.0
- Archived: true
- Created: 2017-05-30T08:04:42.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-07-02T11:47:20.000Z (over 4 years ago)
- Last Synced: 2024-09-26T17:22:03.116Z (about 1 month ago)
- Topics: android, cassandra, cassandra-database, data, db, elastic, firebase, hadoop, local, mongo, mongodb, nosql, path, preferences, saver, shared, simple, sql, uri
- Language: Java
- Homepage:
- Size: 169 KB
- Stars: 288
- Watchers: 12
- Forks: 40
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Android-NoSql
Lightweight, simple structured NoSQL database for Android
# Download
[ ![Download](https://api.bintray.com/packages/florent37/maven/android-nosql/images/download.svg) ](https://bintray.com/florent37/maven/android-nosql/_latestVersion)
```java
dependencies {
implementation 'com.github.florent37:android-nosql:1.0.0'
}
```Save your datas as a structured tree
```java
noSql.put("/users/", "florent")
noSql.put("/users/", "kevin")
nosql.put("/identifiers/florent", 10)
nosql.put("/identifiers/kevin", 12)
```The data structure will be
```java
/
---users/
---"florent"
---"kevin"
---identifiers/
---florent/
---10
---kevin/
---12
```It'll be simple to search data
```java
int myId = noSql.get("/identifiers/florent/").integer();
```# Serialize objects
You can simply add nodes from POJOS
```java
final User user = new User(
"flo",
new House("paris"),
Arrays.asList(new Car("chevrolet camaro"), new Car("ford gt"))
);noSql.put("/user/florent/", user);
``````java
/
---users/
---florent/
---name/
---"flo"
---house/
---adress/
---"paris"
---cars/
---0/
---model/
---"chevrolet camaro"
---1/
---model/
---"ford gt"
```# Get Objects from node
Or fetch nodes directly into Java Objects
```java
User user = noSql.get("/user/florent/", User.class);
```# Navigate
```java
noSql.node("/identifiers/")
.child("florent")
.childNodes()
.get(1)
.put("country", "france");
```# Listeners
You can listen for nodes updates
```java
noSql.notify("/user/", new Listener() {
@Override
public void nodeChanged(String path, NoSql.Value value) {
//notified when :
// - the node is created
// - the node is deleted
// - a subnode is added / updated
}
});
```# Init
Android-NoSql need to be initialized to store your objects
```java
public class MainApplication extends Application {@Override
public void onCreate() {
super.onCreate();AndroidNoSql.initWithDefault(context);
}
}
```You can also define the datasavers using initWith, it means you can store your data into SqlDatabase, or any storage library your want ;)
# Credits
Author: Florent Champigny
Blog : [http://www.tutos-android-france.com/](http://www.www.tutos-android-france.com/)
Fiches Plateau Moto : [https://www.fiches-plateau-moto.fr/](https://www.fiches-plateau-moto.fr/)
License
--------Copyright 2017 Florent37, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.