Skip to main content

APP database limit under the topic storage API

  • December 28, 2022
  • 3 replies
  • 770 views

  • Participating Frequently

As we are developing an front-end APP, we are in need of knowing the database limit to store the item details. Could you please confirm the below points?

  1. App Database limit to store the data
  2. Is it possible to store the objects or array of values for a key?
    Example:
 monday.storage.instance.setItem('domain', {name: "xxx",api_key:"yyy"}).then(res => {
            console.log("setItem.......",res);
          });

3 replies

Matias.Monday
Forum|alt.badge.img
  • monday.com Team Member
  • December 28, 2022

Hello there,

I will ask the team responsible for the storage API about this and let you know soon 🙂


Matias.Monday
Forum|alt.badge.img
  • monday.com Team Member
  • December 29, 2022

Hello there @Priya,

The limit for our storage API is 6MB currently.

The key must be a string.

I hope this helps!

Cheers,
Matias


  • New Participant
  • December 30, 2022

Android uses a file system that’s similar to disk-based file systems on other platforms. The system provides several options for you to save your app data:

App-specific storage: Store files that are meant for your app’s use only, either in dedicated directories within an internal storage volume or different dedicated directories within external storage. Use the directories within internal storage to save sensitive information that other apps shouldn’t access.

Thanks,