[nodejs] Re: Database with streaming blob support

2014-05-21 Thread Alexey Petrushin
s3? Distributed file systems? On Tuesday, 20 May 2014 18:00:29 UTC+4, Matt Sergeant wrote: > > What options are out there currently for streaming blob support in Node.js > databases? > > I know that MongoDB has GridFS which seems to support streams. Are there > any others? > -- Job board: http

[nodejs] Re: Database with streaming blob support

2014-05-21 Thread Floby
I'm currently streaming images and soon videos to a CouchDB database, with cradle sometimes, but mostly directly with request and/or superagent. Putting blob attachments is a simple as `myBlob.pipe(request.put('http://my.databa.se/db/doc/attachment'))` Getting them is even easier `request('htt

[nodejs] Re: Database with streaming blob support

2014-05-20 Thread Luca Morandini
On 21/05/14 00:00, Matt wrote: What options are out there currently for streaming blob support in Node.js databases? I know that MongoDB has GridFS which seems to support streams. Are there any others? I suppose you mean "DBMS supported by Node,js", rather than "Node.js databases". Anyway,