> Today I'm going to try opening the socket and then > storing the socket in the Rails cache, in order to see if that socket > remains open and useable even while just sitting in the cache (I'm kind > of thinking it won't).
Yeah, that didn't work because caching the connection makes it immutable, which means you can no longer write data to it. But you know what I think *will* work? Storing the connection(s) as class vars. So I'm trying that next. I will report back here afterward for anyone who might be interested. -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

