It would be great to be able to reference as a read-only an already created storage-database.
A use case is using acebase as a "cache" in AWS Lambda, where the writing of files is forbidden, but the reading is allowed.
In short, being able to change this r+->r from function openDatabaseFile in storage-acebase.js
|
this.file = fd = await pfs.open(filename, 'r+', 0).catch(err => { |
It would be great to be able to reference as a read-only an already created storage-database.
A use case is using acebase as a "cache" in AWS Lambda, where the writing of files is forbidden, but the reading is allowed.
In short, being able to change this
r+->rfrom functionopenDatabaseFileinstorage-acebase.jsacebase/src/storage-acebase.js
Line 764 in 24ca5f2