All Projects → pilgr → Paper

pilgr / Paper

Licence: apache-2.0
Paper is a fast NoSQL-like storage for Java/Kotlin objects on Android with automatic schema migration support.

Programming Languages

java
68154 projects - #9 most used programming language
kotlin
9241 projects
shell
77523 projects

Projects that are alternatives of or similar to Paper

Objectbox Java
ObjectBox is a superfast lightweight database for objects
Stars: ✭ 3,950 (+74.55%)
Mutual labels:  database, nosql, mobile-database
Arangodb
🥑 ArangoDB is a native multi-model database with flexible data models for documents, graphs, and key-values. Build high performance applications using a convenient SQL-like query language or JavaScript extensions.
Stars: ✭ 11,880 (+424.97%)
Mutual labels:  database, nosql
Ardb
A redis protocol compatible nosql, it support multiple storage engines as backend like Google's LevelDB, Facebook's RocksDB, OpenLDAP's LMDB, PerconaFT, WiredTiger, ForestDB.
Stars: ✭ 1,707 (-24.57%)
Mutual labels:  database, nosql
Tera
An Internet-Scale Database.
Stars: ✭ 1,846 (-18.43%)
Mutual labels:  database, nosql
Couchbase Lite Core
Cross-platform C++ core library for Couchbase Lite
Stars: ✭ 187 (-91.74%)
Mutual labels:  database, nosql
Dynein
DynamoDB CLI written in Rust.
Stars: ✭ 126 (-94.43%)
Mutual labels:  database, nosql
Realm Java
Realm is a mobile database: a replacement for SQLite & ORMs
Stars: ✭ 11,232 (+396.33%)
Mutual labels:  database, mobile-database
Unqlite
An Embedded NoSQL, Transactional Database Engine
Stars: ✭ 1,583 (-30.05%)
Mutual labels:  database, nosql
Objectdb
Persistent embedded document-oriented NoSQL database for Dart and Flutter.
Stars: ✭ 173 (-92.36%)
Mutual labels:  database, nosql
Arangodb Java Driver
The official ArangoDB Java driver.
Stars: ✭ 174 (-92.31%)
Mutual labels:  database, nosql
Gocql
Package gocql implements a fast and robust Cassandra client for the Go programming language.
Stars: ✭ 2,182 (-3.58%)
Mutual labels:  database, nosql
Databazel
The analytical and reporting solution for MongoDB
Stars: ✭ 118 (-94.79%)
Mutual labels:  database, nosql
Couchbase Lite Ios
Lightweight, embedded, syncable NoSQL database engine for iOS and MacOS apps.
Stars: ✭ 1,532 (-32.3%)
Mutual labels:  database, nosql
Db Tutorial
💾 db-tutorial 是一个数据库教程。
Stars: ✭ 128 (-94.34%)
Mutual labels:  database, nosql
Gkvdb
[mirror] Go语言开发的基于DRH(Deep-Re-Hash)深度哈希分区算法的高性能高可用Key-Value嵌入式事务数据库。基于纯Go语言实现,具有优异的跨平台性,良好的高可用及文件IO复用设计,高效的底层数据库文件操作性能,支持原子操作、批量操作、事务操作、多表操作、多表事务、随机遍历等特性。
Stars: ✭ 109 (-95.18%)
Mutual labels:  database, nosql
Jnosql
Eclipse JNoSQL is a framework which has the goal to help Java developers to create Jakarta EE applications with NoSQL.
Stars: ✭ 145 (-93.59%)
Mutual labels:  database, nosql
Pyarango
Python Driver for ArangoDB with built-in validation
Stars: ✭ 183 (-91.91%)
Mutual labels:  database, nosql
Bojack
🐴 The unreliable key-value store
Stars: ✭ 101 (-95.54%)
Mutual labels:  database, nosql
Griddb
GridDB is a next-generation open source database that makes time series IoT and big data fast,and easy.
Stars: ✭ 1,587 (-29.87%)
Mutual labels:  database, nosql
Db
A blazing fast ACID compliant NoSQL DataLake with support for storing 17 formats of data. Full SQL and DML capabilities along with Java stored procedures for advanced data processing.
Stars: ✭ 159 (-92.97%)
Mutual labels:  database, nosql

Paper

Android Arsenal Build Status

Paper's aim is to provide a simple yet fast object storage option for Android. It allows to use Java/Kotlin classes as is: without annotations, factory methods, mandatory class extensions etc. Moreover adding or removing fields to data classes is no longer a pain – all data structure changes are handled automatically.

Paper icon

Migration to Maven Central

Library has been moved to Maven Central since service ends for JCenter. Note that group id has been changed to io.github.pilgr. See the updated section below.

Add dependency

implementation 'io.github.pilgr:paperdb:2.7.1'

RxJava wrapper for Paper is available as a separate lib RxPaper2. Thanks @pakoito for it!

Initialize Paper

Should be initialized once in Application.onCreate():

Paper.init(context);

Threading

  • Paper.init() should be called in UI thread;
  • All other APIs (write, read etc.) are thread-safe and obviously must be called outside of UI thread. Reading/writing for different keys can be done in parallel.

Save

Save any object, Map, List, HashMap etc. including all internal objects. Use your existing data classes as is. Note that key is used as file name to store the data and so cannot contain symbols like /.

List<Person> contacts = ...
Paper.book().write("contacts", contacts);

Read

Read data objects is as easy as

List<Person> = Paper.book().read("contacts");

the instantiated class is exactly the one used to save data. Limited changes to the class structure are handled automatically. See Handle data class changes.

Use default values if object doesn't exist in the storage.

List<Person> = Paper.book().read("contacts", new ArrayList<>());

Delete

Delete data for one key.

Paper.book().delete("contacts");

Remove all keys for the given Book. Paper.init() must be called prior calling destroy().

Paper.book().destroy();

Use custom book

You can create custom Book with separate storage using

Paper.book("for-user-1").write("contacts", contacts);
Paper.book("for-user-2").write("contacts", contacts);

Each book is located in a separate file folder.

Get all keys

Returns all keys for objects in the book.

List<String> allKeys = Paper.book().getAllKeys();

Handle data structure changes

You can add or remove fields to the class. Then on next read attempt of a new class:

  • Newly added fields will have their default values.
  • Removed field will be ignored.

Note: field type changes are not supported.

For example, if you have following data class saved in Paper storage:

class Volcano {
    public String name;
    public boolean isActive;
}

And then you realized you need to change the class like:

class Volcano {
    public String name;
    // public boolean isActive; removed field
    public Location location; // New field
}

the isActive field will be ignored on next read and new location field will have its default value as null.

Exclude fields

Use transient keyword for fields which you want to exclude from saving process.

public transient String tempId = "default"; // Won't be saved

Set storage location for Book instances

By default, all the Paper data files are located with all files belonging to your app, at ../you-app-package-name/files. To save data on SDCard or at any other location you can use new API:

  • Paper.bookOn("/path/to/the/new/location")
  • or Paper.bookOn("path/to/the/new/location", "book-for-user-1") to create custom book.

Export/Import

  • Use Paper.book().getPath() to get path for a folder containing all *.pt files for a given book.
  • Use Paper.book().getPath(key) to get path for a particular *.pt file containing saved object for a given key. Feel free to copy/rewrite those files for export/import purposes. It's your responsibility to finalize file's export/import operations prior accessing data over Paper API.

Proguard config

  • Keep your data classes from modification by Proguard:
-keep class your.app.data.model.** { *; }

also you can implement Serializable for all your data classes and keep all of them using:

-keep class * implements java.io.Serializable { *; }

How it works

Paper is based on the following assumptions:

  • Datasets on mobile devices are small and usually don't have relations in between;
  • Random file access on flash storage is very fast;

Paper saves each object for given key in a separate file and every write/read operations write/read the whole file.

The Kryo is used for object graph serialization and to provide data compatibility support.

Benchmark results

Running Benchmark on Nexus 4, in ms:

Benchmark Paper Hawk
Read/write 500 contacts 187 447
Write 500 contacts 108 221
Read 500 contacts 79 155

Limitations

  • Circular references are not supported

Apps using Paper

  • AppDialer – Paper initially has been developed as internal lib to reduce start up time for AppDialer. Currently AppDialer has the best start up time in its class. And simple no-sql-pain data storage layer like a bonus.
  • Busmap - This application provide all things you need for travelling by bus in Ho Chi Minh city, Vietnam. While the source code is not opened, it is found that the application use Paper internally to manange the bus stop data, route data, time data,... and more.

License

Copyright 2015 Aleksey Masny

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 at

   http://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.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].