Rails Binary Stream support - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T12:07:15Zhttp://stackoverflow.com/feeds/question/57104http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/57104/rails-binary-stream-support5Rails Binary Stream supportCraig Walker2008-09-11T17:08:27Z2009-06-18T21:57:27Z
<p>I'm going to be starting a project soon that requires support for large-ish binary files. I'd like to use Ruby on Rails for the webapp, but I'm concerned with the BLOB support. In my experience with other languages, frameworks, and databases, BLOBs are often overlooked and thus have poor, difficult, and/or buggy functionality.</p>
<p>Does RoR spport BLOBs adequately? Are there any gotchas that creep up once you're already committed to Rails?</p>
<p>BTW: I want to be using PostgreSQL and/or MySQL as the backend database. Obviously, BLOB support in the underlying database is important. For the moment, I want to avoid focusing on the DB's BLOB capabilities; I'm more interested in how Rails itself reacts. Ideally, Rails should be hiding the details of the database from me, and so I should be able to switch from one to the other. If this is <em>not</em> the case (ie: there's some problem with using Rails with a particular DB) then please do mention it. </p>
<p>UPDATE: Also, I'm not just talking about ActiveRecord here. I'll need to handle binary files on the HTTP side (file upload effectively). That means getting access to the appropriate HTTP headers and streams via Rails. I've updated the question title and description to reflect this.</p>
http://stackoverflow.com/questions/57104/rails-binary-stream-support/57112#571121Answer by Teflon Ted for Rails Binary Stream supportTeflon Ted2008-09-11T17:13:53Z2008-09-11T20:54:56Z<p>I think your best bet is the attachment_fu plug-in:
<a href="http://github.com/technoweenie/attachment_fu/tree/master" rel="nofollow">http://github.com/technoweenie/attachment_fu/tree/master</a></p>
<p>UPDATE: Found some more info here <a href="http://groups.google.com/group/rubyonrails-talk/browse_thread/thread/a81beffb93708bb3" rel="nofollow">http://groups.google.com/group/rubyonrails-talk/browse_thread/thread/a81beffb93708bb3</a></p>
http://stackoverflow.com/questions/57104/rails-binary-stream-support/57201#572011Answer by John Topley for Rails Binary Stream supportJohn Topley2008-09-11T17:53:43Z2008-09-11T17:53:43Z<p>You can use the <code>:binary</code> type in your ActiveRecord migration and also constrain the maximum size:</p>
<pre><code>class BlobTest < ActiveRecord::Migration
def self.up
create_table :files do |t|
t.column :file_data, :binary, :limit => 1.megabyte
end
end
end
</code></pre>
<p>ActiveRecord exposes the BLOB (or CLOB) contents as a Ruby String.</p>
http://stackoverflow.com/questions/57104/rails-binary-stream-support/57608#576083Answer by Matt Rogish for Rails Binary Stream supportMatt Rogish2008-09-11T20:53:59Z2008-09-11T21:21:49Z<p>+1 for attachment_fu</p>
<p>I use attachment_fu in one of my apps and MUST store files in the DB (for annoying reasons which are outside the scope of this convo).</p>
<p>The (one?) tricky thing dealing w/BLOB's I've found is that you need a separate code path to send the data to the user -- you can't simply in-line a path on the filesystem like you would if it was a plain-Jane file.</p>
<p>e.g. if you're storing avatar information, you can't simply do:</p>
<pre><code><%= image_tag @youruser.avatar.path %>
</code></pre>
<p>you have to write some wrapper logic and use send_data, e.g. (below is JUST an example w/attachment_fu, in practice you'd need to DRY this up)</p>
<pre><code>send_data(@youruser.avatar.current_data, :type => @youruser.avatar.content_type, :filename => @youruser.avatar.filename, :disposition => 'inline' )
</code></pre>
<p>Unfortunately, as far as I know attachment_fu (I don't have the latest version) does not do clever wrapping for you -- you've gotta write it yourself.</p>
<p>P.S.
Seeing your question edit - Attachment_fu handles all that annoying stuff that you mention -- about needing to know file paths and all that crap -- EXCEPT the one little issue when storing in the DB. Give it a try; it's the standard for rails apps. IF you insist on re-inventing the wheel, the source code for attachment_fu should document most of the gotchas, too!</p>
http://stackoverflow.com/questions/57104/rails-binary-stream-support/58208#582080Answer by Michael Sica for Rails Binary Stream supportMichael Sica2008-09-12T02:38:24Z2008-09-12T02:38:24Z<p>Look into the plugin, <a href="http://john.guen.in/rdoc/x_send_file/" rel="nofollow">x_send_file</a> too. </p>
<p>"The XSendFile plugin provides a simple interface for sending files via the X-Sendfile HTTP header. This enables your web server to serve the file directly from disk, instead of streaming it through your Rails process. This is faster and saves a lot of memory if you‘re using Mongrel. Not every web server supports this header. YMMV."</p>
<p>I'm not sure if it's usable with Blobs, it may just be for files on the file system. But you probably need something that doesn't tie up the web server streaming large chunks of data.</p>
http://stackoverflow.com/questions/57104/rails-binary-stream-support/58377#583772Answer by Jim Puls for Rails Binary Stream supportJim Puls2008-09-12T05:46:47Z2008-09-12T05:46:47Z<p>As for streaming, you can do it all in an (at least memory-) efficient way. On the upload side, file parameters in forms are abstracted as IO objects that you can read from; on the download side, look in to the form of <code>render :text =></code> that takes a Proc argument:</p>
<pre><code>render :content_type => 'application/octet-stream', :text => Proc.new {
|response, output|
# do something that reads data and writes it to output
}
</code></pre>
<p>If your stuff is in files on disk, though, the aforementioned solutions will certainly work better.</p>
http://stackoverflow.com/questions/57104/rails-binary-stream-support/1015419#10154190Answer by Gopherkhan for Rails Binary Stream supportGopherkhan2009-06-18T21:57:27Z2009-06-18T21:57:27Z<p>I've been working on a similar issue with blob image data. This doesn't really answer your question, but it might prove helpful:</p>
<p><a href="http://www.railsforum.com/viewtopic.php?id=4642" rel="nofollow">http://www.railsforum.com/viewtopic.php?id=4642</a></p>
<p>to me, the blob data support is pretty decent.</p>