Objectbox = Is it in memory or disk database?

985

ObjectBox is not an in-memory database and uses available RAM efficiently. You get in-memory performance for reads when enough RAM is available. If less RAM is available and you operate on large data sets, it uses the disk more often. This is done also very efficiently using B+ tree paging.

There are also two FAQ entries on caching/RAM for more details.

Share:
985
Vimal Mistry
Author by

Vimal Mistry

Updated on November 25, 2022

Comments

  • Vimal Mistry
    Vimal Mistry over 1 year

    I am building chat app in flutter.

    I found objectbox with dart. It is look good. previously I tried hive.

    My question is. Objectbox is in memory database or disk database?.

    Hive is in memory database when I open my app. its load all box data in memory. But I am searching for solution like disk storage. So I can load data on memory when I needed. How Objectbox works?