How will you get the data?  Will you fetch it or will it be sent to your app?

Either way, the data will not be sent to your code until the
connection has completed.  So you will not really be able to 'process
line by line.'

What are your clients?  If they are browsers, while you are processing
the data, you could probably make use of the task queue + the Channel
API to send it to your clients.

You need to read about the quotas and limits to be sure your app can
operate within them.
   http://code.google.com/appengine/docs/python/runtime.html#Quotas_and_Limits
   
http://code.google.com/appengine/docs/python/urlfetch/overview.html#Quotas_and_Limits


Robert





On Thu, Jan 20, 2011 at 11:37, nunojpg <[email protected]> wrote:
> On 20 Jan, 15:54, Eli Jones <[email protected]> wrote:
>> Offline processes can run for 10 minutes, so you have some wiggle room when
>> dealing with importing streams into your app.
>
> I don't see how to use offline processes for anything - I need to be
> receiving the data all the time, and sending it all the time.
>
> Regards,
> Nuno
>
> --
> You received this message because you are subscribed to the Google Groups 
> "Google App Engine" 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/google-appengine?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" 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/google-appengine?hl=en.

Reply via email to