You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This NoSQL Java database is built for storing data locally on mobile devices. It is optimized for high efficiency on restricted devices and uses minimal CPU and RAM. Being fully ACID-compliant, ObjectBox is faster than any alternative, outperforming SQLite and Realm across all CRUD (Create, Read, Update, Delete) operations. Check out our [Performance Benchmarking App repository](https://github.com/objectbox/objectbox-performance).
52
60
53
-
ObjectBox NoSQL Java database is built for storing data locally on mobile devices. It is optimized for high efficiency on restricted devices and uses minimal CPU and RAM. Being fully ACID-compliant, ObjectBox is faster than any alternative, outperforming SQLite and Realm across all CRUD (Create, Read, Update, Delete) operations. Check out our [Performance Benchmarking App repository](https://github.com/objectbox/objectbox-performance).
61
+
Additionally, our concise API is easy to learn and only requires a fraction of the code compared to SQLite. No more rows or columns, just plain objects with built-in relations. It's also build for handling large data volumes and allows changing your model whenever needed.
54
62
55
-
Additionally, our concise API is easy to learn and only requires a fraction of the code compared to SQLite. No more rows or columns, just plain objects with built-in relations.
63
+
All of this makes ObjectBox a sustainable choice for Java data persistence - it's efficient, green, and scalable.
56
64
57
65
### Features
58
66
59
67
🏁 **High performance** on restricted devices, like IoT gateways, micro controllers, ECUs etc.\
60
68
🪂 **Resourceful** with minimal CPU, power and Memory usage for maximum flexibility and sustainability\
61
-
🔗 **Relations:** object links / relationships are built-in\
69
+
🔗 **[Relations](https://docs.objectbox.io/relations):** object links / relationships are built-in\
🌱 **Scalable:** handling millions of objects resource-efficiently with ease\
65
-
💐 **Queries:** filter data as needed, even across relations\
73
+
💐 **[Queries](https://docs.objectbox.io/queries):** filter data as needed, even across relations\
66
74
🦮 **Statically typed:** compile time checks & optimizations\
67
75
📃 **Automatic schema migrations:** no update scripts needed
68
76
69
77
**And much more than just data persistence**\
70
78
🔄 **[ObjectBox Sync](https://objectbox.io/sync/):** keeps data in sync between devices and servers\
71
79
🕒 **[ObjectBox TS](https://objectbox.io/time-series-database/):** time series extension for time based data
72
80
73
-
Enjoy ❤️
74
-
75
-
## Gradle setup
81
+
## How to get started
82
+
### Gradle setup
76
83
77
84
For Android projects, add the ObjectBox Gradle plugin to your root `build.gradle`:
78
85
@@ -100,7 +107,7 @@ plugins {
100
107
apply plugin: "io.objectbox" // Add after other plugins.
101
108
```
102
109
103
-
## First steps
110
+
###First steps
104
111
105
112
Create a data object class `@Entity`, for example "Playlist".
106
113
```
@@ -130,9 +137,9 @@ For details please check the [docs](https://docs.objectbox.io).
130
137
131
138
## Already using ObjectBox?
132
139
133
-
We believe, ObjectBox is super easy to use. We are on a mission to make developers’ lives better, by building developer tools that are intuitive and fun to code with.
140
+
❤ **Your opinion matters to us!** Please fill in this 2-minute [Anonymous Feedback Form](https://forms.gle/bdktGBUmL4m48ruj7).
134
141
135
-
To do that, we want your feedback: what do you love? What's amiss? Where do you struggle in everyday app development?
142
+
We believe, ObjectBox is super easy to use. We are on a mission to make developers’ lives better, by building developer tools that are intuitive and fun to code with. To do that, we want your feedback: what do you love? What's amiss? Where do you struggle in everyday app development?
136
143
137
144
**We're looking forward to receiving your comments and requests:**
0 commit comments