Introduction

Let's ask ourselves this simple question:

circle-info

Why do we need to save the scene?

Let's say that we have a large file. Assume that it takes >1min to parse the file. Now, let's assume that we want to view the result many times. We might even turn off our computer in-between viewings.

circle-exclamation

One might suggest using localStoragearrow-up-right (read more herearrow-up-right). However, localStorage is limited to about 5MB and can contain only strings and is not accessible from Web Workers (1arrow-up-right).

I suggest using IndexedDBarrow-up-right instead. IndexedDB is a way for you to persistently store data inside a user's browser (2arrow-up-right). Read more herearrow-up-right.

Last updated