Daneshkhan
Daneshkhan

Reputation: 41

What is Storage Capacity of IndexedDB?

I am new to javaScript based indexedDB . I don't understand how much data can be store in indexeddb. Is there any limitations on storage in indexeddb ?

Upvotes: 1

Views: 481

Answers (1)

Mamun
Mamun

Reputation: 68933

Firefox can use IndexedDB, LocalStorage and SessionStorage.

For IndexedDB, you can use up to 50MB on desktop, 5MB on mobile for free.

LocalStorage and SessionStorage can use up to 10MB of storage but the number is actually the sum of both.

For more: Browser storage limits and eviction criteria

Upvotes: 1

Related Questions