Re: Two years on and still no sensible web storage solutions exist

On Mon, Nov 12, 2012 at 1:36 PM, Todd Blanchard <toddvblanchard@gmail.com>wrote:

> Wondering what is wrong with the blob type in SQLite?
>
A couple of things
1) Array buffers can't be passed to websql
2) websql is subject to the hard quota (5mb) and I'm talking about
gigabytes of data
3) traditionally blobs in RDBMSes are slow

Of course you could use base64 encoding, unfortunately atob btoa do not
support array buffers, and the methods are also not standardized, and there
don't exist native methods for base64 encoding/decoding to array buffers.
Base64 encoding in JS of hundreds of megabytes or a couple gigabytes is
unfortunately not quite a feasible prospect, especially not on weaker
machines.

Received on Monday, 12 November 2012 12:44:25 UTC