I was wondering if there’s an easy way to make ActionController render a
response in an asynchronous background process.
I have a large object graph which takes over a minute to serialize in
amf:
render :amf => myData
I’d like to render() the amf serialization in a workling process and
store the results in memcache key’d by original msg-id so the client can
get the serialized result in a subsequent request.
Is there a simple way to perform the render() operation outside the
context of the controller? Something like:
MyController.new.render({:amf=>myData})
(of course, render() is a protected method, so I can’t do that. And I’m
also not sure where to obtain the serialized result since render() is
void).
I was wondering if there’s an easy way to make ActionController render a
response in an asynchronous background process.
I have a large object graph which takes over a minute to serialize in
amf:
render :amf => myData
I’d like to render() the amf serialization in a workling process and
store the results in memcache key’d by original msg-id so the client can
get the serialized result in a subsequent request.
Is there a simple way to perform the render() operation outside the
context of the controller? Something like:
MyController.new.render({:amf=>myData})
(of course, render() is a protected method, so I can’t do that. And I’m
also not sure where to obtain the serialized result since render() is
void).