sebastian-ardila / google-app-engine-django

Automatically exported from code.google.com/p/google-app-engine-django
Apache License 2.0
0 stars 0 forks source link

Querys scale poorly on development server #128

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Create some models
2. Insert 10000 rows
3. Do queries over those rows

What is the expected output? What do you see instead?

Expected : fast lookups (with indexes)
Observed : slow lookups (it feels like logarithmic slowdown)

What version of the product are you using? On what operating system?

Django 1.0.2 appengine_helper_for_django-r86 linux

Please provide any additional information below.

It feels like there isn't hashtable lookups on the development
implementation. My application needs lots of data to run and test on, but
the development server is grinding to a halt.

Can I swap in MySQL for testing and then BigTable on Google's end for
production? Do the DB objects use hashtable lookups?

Original issue reported on code.google.com by ptar...@gmail.com on 3 Jun 2009 at 4:19

GoogleCodeExporter commented 9 years ago
This is not a helper issue - the problem here is that app engine uses a text 
file for
local db development. I know someone was working on being able to use CouchDB or
SimpleDB in the local dev env. But in any case, not a google-app-engine-django 
issue.

Original comment by els...@gmail.com on 24 Jun 2009 at 9:44