Rails Binary Stream support - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T12:07:15Z http://stackoverflow.com/feeds/question/57104 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/57104/rails-binary-stream-support 5 Rails Binary Stream support Craig Walker 2008-09-11T17:08:27Z 2009-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#57112 1 Answer by Teflon Ted for Rails Binary Stream support Teflon Ted 2008-09-11T17:13:53Z 2008-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#57201 1 Answer by John Topley for Rails Binary Stream support John Topley 2008-09-11T17:53:43Z 2008-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 &lt; ActiveRecord::Migration def self.up create_table :files do |t| t.column :file_data, :binary, :limit =&gt; 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#57608 3 Answer by Matt Rogish for Rails Binary Stream support Matt Rogish 2008-09-11T20:53:59Z 2008-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>&lt;%= image_tag @youruser.avatar.path %&gt; </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 =&gt; @youruser.avatar.content_type, :filename =&gt; @youruser.avatar.filename, :disposition =&gt; '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#58208 0 Answer by Michael Sica for Rails Binary Stream support Michael Sica 2008-09-12T02:38:24Z 2008-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#58377 2 Answer by Jim Puls for Rails Binary Stream support Jim Puls 2008-09-12T05:46:47Z 2008-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 =&gt;</code> that takes a Proc argument:</p> <pre><code>render :content_type =&gt; 'application/octet-stream', :text =&gt; 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#1015419 0 Answer by Gopherkhan for Rails Binary Stream support Gopherkhan 2009-06-18T21:57:27Z 2009-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>