2008/9/23 Ahsan Ali <[EMAIL PROTECTED]>: > It seems that my understanding of deferred actions was muddled: I confused > render_deferred with render_then_call. > I will try out deferred actions to see how the application behaves.
I seriously suggest you using EventMachine or Twisted from the start. This sort of applications is a PITA to implement using web frameworks and HTTP just because they were developed for stateless and often blocking applications. EventMachine, in turn, is all about asynchronous general purpose network programming where all the low level code is written for you. You just implement your protocol that can be HTTP, IRC, MySQL, Memcached, custom application-specific RPC-like protocol, SOAP, anything you can imagine. And EM clients and servers always have state. -- MK --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "merb" 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/merb?hl=en -~----------~----~----~----~------~----~------~--~---
