Is it possible to upload file directly into database? Without creation the extra temp file on the disk. Thanks! :)
on 2008-11-18 03:30
on 2008-11-18 17:37
Michael D'Auria wrote: > Is there a reason why you are avoiding the filesystem for storage? > > Michael Yes, i'm using abstract storage interface, that can be implemented as local file system, remote file system, distributed file system, database, cache. In this case the temp file is not needed. I can just switch the input stream to it's destination without lost performance on not needed IO operations.
on 2008-11-18 18:19
On Tue, Nov 18, 2008 at 8:37 AM, Alexey Petrushin <lists@ruby-forum.com> wrote: > stream to it's destination without lost performance on not needed IO > operations. You could look at the Ruby code that produces the temporary files, and change it. It is in method CGI::QueryExtension#read_multipart in cgi.rb (/usr/lib/ruby/1.8/cgi.rb on my machine) Stephan > -- > Posted via http://www.ruby-forum.com/. > _______________________________________________ > Mongrel-users mailing list > Mongrel-users@rubyforge.org > http://rubyforge.org/mailman/listinfo/mongrel-users > -- Stephan Wehner -> http://stephan.sugarmotor.org -> http://www.thrackle.org -> http://www.buckmaster.ca -> http://www.trafficlife.com -> http://stephansmap.org -- blog.stephansmap.org -> http://loggingit.com -- blog.loggingit.com
on 2008-11-18 18:46
On Nov 18, 2008, at 9:19 AM, Stephan Wehner wrote: >> >> In this case the temp file is not needed. I can just switch the input >> stream to it's destination without lost performance on not needed IO >> operations. > > You could look at the Ruby code that produces the temporary files, and > change it. > It is in method CGI::QueryExtension#read_multipart in cgi.rb > (/usr/lib/ruby/1.8/cgi.rb on my machine) Mongrel doesn't actually use CGI.rb, thats only rails. You want to look in http_request.rb and patch the code that writes to a tmpfile and have it write to wherever you want: http://mongrel.rubyforge.org/browser/trunk/lib/mon... Cheers- Ezra Zygmuntowicz ez@engineyard.com
Please log in before posting. Registration is free and takes only a minute.
Existing account
(Switch to SSL-encrypted connection)
NEW: Do you have a Google/GoogleMail or Yahoo account? No registration required!
Log in with Google account | Log in with Yahoo account
Log in with Google account | Log in with Yahoo account
No account? Register here.