Hi StackO,
Long time fan, first time posting. Hi!
Anyone notice slowness from a django dev server running on Mac OS and connecting to a remote (postgres) db? It doesn't seem to be the DNS problem referenced elsewhere. We've got a staging instance running the exact same code on the same remote staging box that's hosting the db, and the performance on that instance is very crisp.
Here's the output of the performance middleware running locally:
Total: 19.58 Python: 6.39 DB: 13.19 Queries: 17
And on the staging server:
Total: 0.07 Python: 0.05 DB: 0.02 Queries: 16
Maybe it's postgres client network overhead from connecting to the remote db, or something? I don't mind doing the development on the staging server, but it's nice being able to run things locally too.
Thanks!
Dan