Displaying 1 result from an estimated 1 matches for "move_to_stor".
Did you mean:
move_to_store
2013 Jun 21
0
Carrierwave large file optimization
Carrierwave documentation includes this tip for uploading large files. Inside your uploader, add these two methods (they say)
def move_to_cache
true
end
def move_to_store
true
end
to make the uploads work more efficiently. This is true, it does work -- as long as you aren''t trying to do anything with versions or other processing. If you do, then the upload will only ever work in a create method, not an update.
Can anyone suggest a way where I may...