I've managed to make this work by changing the following lines in
active_support/cache/file_store.rb

+ File.atomic_write(real_file_path(name), cache_path) { |f| f.write
(Marshal.dump(value)) }
- File.atomic_write(real_file_path(name), cache_path) { |f|
Marshal.dump(value, f) }

as far as I can see, it's doing the same thing, but for some reason
Marshal won't treat f as an IOstream as I think it's supposed to.
I don't really like changing it there though, and I'd like to know why
it doesn't work as it's supposed to.

any thoughts still welcome

d
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to