top | item 36342132

(no title)

Dnguyen | 2 years ago

I wish the RAM could be a bit more, at least 1G or 2G, so I can have a database on there without having to ship my data to the cloud. Then the system can really run isolated as much as possible, for security and privacy.

discuss

order

wongarsu|2 years ago

SQLite would still be a good option. It's incredibly lightweight, and if you set the database to WAL mode it also works well for a database file accessed by multiple applications on the same device.

Narishma|2 years ago

It has 16GB of flash. Can't you put your database there?

lostgame|2 years ago

This. Back in the day when we lacked RAM, especially on *nix based systems, it's absolutely normal to use the disk/flash as pseudo-RAM. This was just...a normal part of computing at the time, heh.

Of course, applications would respond shit slow this way, but in the case of a DB it'd be more than fine, no?

wilonth|2 years ago

Dude database is supposed to be on disk not RAM.

Dnguyen|2 years ago

Yes, I understand the content of the database is supposed to be on disk. But for the database to function and do its thing, it needs space in RAM. Like page swap and cache.