Skip to content

Commit 7898a77

Browse files
committed
changed a couple of sentences and also added Kotlin ina bit more again without harming Java, I believe README.md
1 parent 815ee06 commit 7898a77

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

README.md

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
</a>
2121
</p>
2222

23-
# Java Database (+ Kotlin, Android) for sustainable local data storage
23+
# ObjectBox Java Database (Kotlin, Android)
2424

25-
Database for Java that's embedded into your Android, Linux, macOS, or Windows app. Store and manage data efficiently and effortlessly.
25+
Java database - simple but powerful, frugal but fast; embedded into your Android, Linux, macOS, iOS, or Windows app. Enjoy the speed, simplicity, and sustainability in your next app built with ObjectBox.
2626

2727
### Demo code
2828

@@ -33,6 +33,7 @@ playlist.songs.add(new Song("Lalala"));
3333
playlist.songs.add(new Song("Lololo"));
3434
box.put(playlist);
3535
```
36+
--> [More details in the docs](https://docs.objectbox.io/)
3637

3738
```kotlin
3839
// Kotlin
@@ -41,7 +42,6 @@ playlist.songs.add(Song("Lalala"))
4142
playlist.songs.add(Song("Lololo"))
4243
box.put(playlist)
4344
```
44-
[More details in the docs.](https://docs.objectbox.io/)
4545

4646
## Table of Contents
4747
- [Why use ObjectBox](#why-use-objectbox)
@@ -54,13 +54,17 @@ box.put(playlist)
5454
- [License](#license)
5555

5656

57-
## Why use ObjectBox for Java data management?
57+
## Why use ObjectBox for Java data management / Kotlin data management?
5858

59-
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).
59+
The NoSQL Java database is built for storing data locally on resource-restricted devices like smartphones.
6060

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.
61+
The database is otimized for high speed and low resource consumption on restricted devices, making it ideal for use on mobile devices. It uses minimal CPU, RAM, and power, which is not only great for users but also for the environment.
6262

63-
All of this makes ObjectBox a sustainable choice for Java data persistence - it's efficient, green, and scalable.
63+
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).
64+
65+
Our concise native-language API is easy to pick up and only requires a fraction of the code compared to SQLite. No more rows or columns, just plain objects (true POJOS) with built-in relations. It isgreat for handling large data volumes and allows changing your model whenever needed.
66+
67+
All of this makes ObjectBox a sustainable choice for local data persistence with Java and Kotlin - it's easy, efficient, and sustainable.
6468

6569
### Features
6670

@@ -139,7 +143,7 @@ For details please check the [docs](https://docs.objectbox.io).
139143

140144
**Your opinion matters to us!** Please fill in this 2-minute [Anonymous Feedback Form](https://forms.gle/bdktGBUmL4m48ruj7).
141145

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?
146+
We believe, ObjectBox is super easy to use. We want to bring joy and delight to app developers with intuitive and fun to code with APIs. To do that, we want your feedback: what do you love? What's amiss? Where do you struggle in everyday app development?
143147

144148
**We're looking forward to receiving your comments and requests:**
145149
- Add [GitHub issues](https://github.com/ObjectBox/objectbox-java/issues)

0 commit comments

Comments
 (0)