As others have pointed out, the dev server is useless for actual production. (It's not just the linear search of the dev server's datastore; its history file will also kill you.)
There are two big problems, the datastore and the web server. It's obviously possible to create an API compatible datastore that one could use elsewhere. http://github.com/jchris/appdrop/tree/master looks like a first pass at supporting the GAE datastore API using a single mysql instance. However, you also need to create a compatible version of the web server because the "one request at a time" limit is probably too strict. On Feb 14, 11:55 am, Nash-t <[email protected]> wrote: > I'd like to do this too but keep in mind you need to build your own > authentication and security system. > > Has anyone done any load/stress testing on the dev server? Or taken a > close look at it's architecture? Is there a possibility to create a > open source version of app engine that we could use for intranets? > > The reason I am interested in this is simple. A significant percentage > of my target market doesn't want their data in the cloud. If we can > write one application that can serve cloud as well as intranet users, > we will promote cloud adoption in an evolutionary way. > > -Tim > sanmateowaveforms.com > > On Feb 14, 5:10 am, Faber Fedor <[email protected]> wrote: > > > > > On Fri, Feb 13, 2009 at 11:51 PM, Allen <[email protected]> wrote: > > > > When I finish the application, I can upload to Google App Engine by > > > "appcfg.py update ....." > > > Right. You upload it to Google and take advantage of their infrastructure. > > > > My question is : > > > Can I run this application in my local LAN. And make sure other > > > computers in the samd LAN can visit it. > > > When you run it on your local computer you ARE running it on your local > > LAN. If configured properly, there's no reason other computers on your LAN > > can't use your app. You won't get the benefits of Google's infrastructure, > > of course, but maybe you don't need that on your local LAN. > > > But why would you do that? The main selling point of AppEngine is, IMO, the > > scalability. > > > -- > > Faber Fedor > > Linux New Jerseyhttp://linuxnj.com- Hide quoted text - > > - Show quoted text - --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
