Store data on restricted devices. Without eating up resources.
ObjectBox is a highly efficient embedded database, optimized for high performance and low resource use on restricted (embedded) devices. ObjectBox is a NoSQL, ACID-compliant embedded database, with a small footprint, using very little CPU, RAM, and battery – leaving more resources for other value adding operations. On top, we offer an out-of-the-box data synchronization solution, enabling developers to easily keep data in flow (bi-directional) between embedded devices, online or offline. ObjectBox enables developers to persist objects and time-series data with native language APIs like C, C++, Go-lang, Java, Flutter / Dart, Kotlin, swift. You can run it on any POSIX platform including Linux, Android, iOS, MacOS, and Windows. We also do offer support for data structured in trees, e.g. VSS and Umati.
Resource Efficiency
Small footprint and minimal CPU, RAM and battery use. In reference cases on restricted embedded devices, we used less than 8% CPU for 150k data points with 30k random changes / second, reducing energy usage by 90%.
Embedded Devices
Optimized for high-performance on Embedded Systems. From Engine Control Units to Industrial Controllers: Persist and synchronize data on and between embedded devices efficiently.
Fast I/O throughput
ObjectBox is 10x faster then alternatives (check out our open source benchmarks). Ingest high volumes of data (high frequency, low frequency, simultanous connections) fast.
Enhanced Developer Agility
Over 1,000,000 developers use ObjectBox Database and love our easy-to-use native language APIs. Reduce lines of code. Make maintenance simple.
Persistent Local Data Storage
No connectivity? No problem. With persistent local storage, keep collecting and storing data even in environments with intermittent connectivity or extended outages.
Out-of-the-box Data Sync
Keep data in flow with ObjectBox Sync. ObjectBox syncs data bi-directionally between devices (from smartphone to server) super efficiently and transactionally safe.
ObjectBox is easy and fast to set up and integrate. Our simple APIs and data browser allow developers to implement and extend solutions quickly, and make debugging and maintenance easy.
Developers ObjectBox
The ease of use was a big pro; having dealt with a lot of databases, the APIs of ObjectBox are refreshingly intuitive.
code snippet coming soon 🙂 check out the actual code here: https://github.com/objectbox/objectbox-c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@EntitypublicclassPerson{
@Id longid;
StringfirstName;
...
}
// MyObjectBox is generated by ObjectBox
BoxStore boxStore=MyObjectBox.builder()
.androidContext(YourApp.this).build();
Box<Person>box=boxStore.boxFor(Person.class);
Person person=newPerson("Joe","Green");
longid=box.put(person);// Create
Person person=box.get(id);// Read
person.setLastName("Black");
box.put(person);// Update
box.remove(person);// Delete
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//go:generate objectbox-bindings
typePersonstruct{
Id uint64`id`
FirstName string
LastName string
}
...box:=BoxForPerson(ob)
// Create
id,_:=box.Put(&Person{
FirstName:"Joe",
LastName:"Green",
})
person,_:=box.Get(id)// Read
person.LastName="Black"
box.Put(person)// Update
box.Remove(person)// Delete
The Embedded Database for Sustainable Edge Applications
ObjectBox’ embedded database and data sync solution empowers embedded solutions across industries. From Automotive to Industrial IoT, ObjectBox is used by embedded developers for speed, resource efficiency, and to reduce data transmission overhead. Read more about industry-specific applications here:
We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.Ok