[google-appengine] Re: Google Apps, Python & C++

2008-09-27 Thread Thomas Johansson
What you could do is send off a work request using urlfetch, and then have the processor do a callback when it's done, with the data. Of course, currently you can at max send and receive 1Mb, and you can only store 1Mb blobs in the datastore, so that might be a hindrance. On Sep 27, 5:37 pm, Jaso

[google-appengine] Re: Google Apps, Python & C++

2008-09-27 Thread Justin P. Goldberg
Right, utility computing and cloud computing are two different things. On Sat, Sep 27, 2008 at 10:37 AM, Jason <[EMAIL PROTECTED]> wrote: > > Thanks for the help guys, was kinda hoping it could call from machines > elsewhere, doing the gruntwork on my own servers. > > > --~--~-~--~---

[google-appengine] Re: Google Apps, Python & C++

2008-09-27 Thread Jason
Thanks for the help guys, was kinda hoping it could call from machines elsewhere, doing the gruntwork on my own servers. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group

[google-appengine] Re: Google Apps, Python & C++

2008-09-25 Thread Justin Goldberg
OpenMP running on your network of machines? Or perhaps a beowulf cluster. On Sep 24, 1:35 pm, Jason <[EMAIL PROTECTED]> wrote: > What is the best way for a calculation hungry app (video processing) > which I have already in C++ to be ported to google apps? > > I'm no python expert but can get by

[google-appengine] Re: Google Apps, Python & C++

2008-09-24 Thread Peter Recore
If your app is spending most of its time number crunching and little of its time serving up html to users, app engine is probably not your best option. It is focused on interactive web applications. Do your video editing calculations finish in under 8 seconds? If not, you are probably better o

[google-appengine] Re: Google Apps, Python & C++

2008-09-24 Thread Davide Rognoni
With a pure Python implementation ;-) http://code.google.com/appengine/docs/python/purepython.html On Sep 24, 8:35 pm, Jason <[EMAIL PROTECTED]> wrote: > What is the best way for a calculation hungry app (video processing) > which I have already in C++ to be ported to google apps? > > I'm no pyt