Skip to content

Commit b998269

Browse files
committed
Merge remote-tracking branch 'github/main' into main
2 parents 21c8932 + b795b05 commit b998269

File tree

1 file changed

+17
-13
lines changed

1 file changed

+17
-13
lines changed

โ€ŽREADME.mdโ€Ž

Lines changed: 17 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
ObjectBox C and C++ APIs
1+
ObjectBox Embedded C / C++ Database for Embedded Devices, IoT & Mobile
22
========================
3-
[ObjectBox](https://objectbox.io) is a superfast database and data synchronization solution.
3+
[ObjectBox](https://objectbox.io) is a superfast C / C++ database for embedded devices (Mobile and IoT), with out-of-the-box [Data Sync](https://objectbox.io/sync/) to keep data in sync across devices and any kind of backend / cloud reliably for occassionally connected devices. ObectBox Data Persistence and Data Snyc follows an offline-first aproach and can be used on-premise as well as with a cloud setup.
4+
45
This is the **ObjectBox runtime library** to run ObjectBox as an embedded database in your C or C++ application.
56

67
Here's a C++ example that inserts a `Task` data object (a plain user defined `struct`) into the database:
@@ -16,16 +17,19 @@ See [changelog](CHANGELOG.md) for more details.
1617
1718
Feature Highlights
1819
------------------
19-
๐Ÿ **High performance:** improving response rates and enabling real-time applications.\
20-
๐Ÿช‚ **ACID compliance:** Atomic, Consistent, Isolated, Durable.\
21-
๐Ÿ”— **Relations:** object links / relationships are built-in.\
22-
๐ŸŒฑ **Scalable:** grows with your needs, handling millions of objects with ease.\
23-
๐Ÿ’ **Queries:** filter data as needed, even across relations.\
24-
๐Ÿฆฎ **Statically typed:** compile time checks & optimizations.\
25-
๐Ÿ’ป **Multiplatform:** Linux, Windows, Android, iOS, macOS.\
26-
๐Ÿ“ƒ **Automatic schema migrations:** no update scripts needed.\
27-
๐Ÿ‘ฅ **[ObjectBox Sync](https://objectbox.io/sync/):** keeps data in sync between devices and servers.\
28-
๐Ÿ•’ **[ObjectBox TS](https://objectbox.io/time-series-database/):** time series extension for time based data.
20+
๐Ÿ **High performance** on restricted devices, like IoT gateways, micro controllers, ECUs etc.\
21+
๐Ÿช‚ **Resourceful** with minimal CPU, power and Memory usage for maximum flexibility and sustainability\
22+
๐Ÿ”— **Relations:** object links / relationships are built-in\
23+
๐Ÿ’ป **Multiplatform:** Linux, Windows, Android, iOS, macOS
24+
25+
๐ŸŒฑ **Scalable:** handling millions of objects resource-efficiently with ease\
26+
๐Ÿ’ **Queries:** filter data as needed, even across relations\
27+
๐Ÿฆฎ **Statically typed:** compile time checks & optimizations\
28+
๐Ÿ“ƒ **Automatic schema migrations:** no update scripts needed
29+
30+
31+
๐Ÿ‘ฅ **[ObjectBox Sync](https://objectbox.io/sync/):** keeps data in sync between devices and servers\
32+
๐Ÿ•’ **[ObjectBox TS](https://objectbox.io/time-series-database/):** time series extension for time based data
2933
3034
And some more technical details:
3135
@@ -35,7 +39,7 @@ And some more technical details:
3539
* Flex type to represent any FlexBuffers
3640
* Secondary indexes based on object properties
3741
* Async API for asynchronous puts, inserts, updates, removes
38-
* Optimized Time series types (TS edition only)
42+
* Optimized for time series data (TS edition only)
3943
* Data synchronization across the network (sync edition only)
4044
4145
Usage and Installation

0 commit comments

Comments
ย (0)