0
votes
1answer
131 views
Locally Hosted Google App Engine (WebApp Framework / BigTable)
I have been playing with Google App engine a lot lately, from home on personal projects, and I have been really enjoying it. I've converted a few of my coworkers over and we are in …
0
votes
1answer
36 views
Django + dbxml + Apache = problems. Any solutions?
I'm trying to set up a Django application using WSGI. That works fine. However, I am having some issues with part of my Django app that uses BDB XML. My Apache config is as follows …
0
votes
2answers
75 views
nginx with mod_wsgi
I generally run web apps behind nginx with FastCGI. I wanted to experiment with mod_wsgi, however it seems quite out of date. The author mentions that it worked on version 0.5.34 …
3
votes
3answers
121 views
Speeding Up the First Page Load in django
When I update the code on my website I (naturally) restart my apache instance so that the changes will take effect.
Unfortunately the first page served by each apache instance is …
0
votes
0answers
15 views
[mod-wsgi] from multiprocessing import Queue
Is it possible to make this work between mod_wsgi sub interpreters?
from threading import Thread
from multiprocessing import Queue
def sid(q):
u = 0
while True:
u += 1
…
5
votes
4answers
552 views
Django persistent database connection.
Hi folks,
I'm using django with apache and mod_wsgi and PostgreSQL (all on same host), and I need to handle a lot of simple dynamic page requests (hundreds per second). I faced wi …
1
vote
9answers
208 views
How do you generate random unique identifiers in a multi process and multi thread environment?
Every solution I come up with is not thread save.
def uuid(cls,db):
u = hexlify(os.urandom(8)).decode('ascii')
db.execute('SELECT sid FROM sessions WHERE sid=?',(u,))
…
0
votes
2answers
76 views
Server software choice for Django live/staging
For developing our Django web app, I'd like to move to an autonomous system that automatically updates the source (from VCS) of a staging copy of the app which has near identical p …
0
votes
1answer
108 views
MOD_WSGI difficulties on Mac OS X Snow Leopard
I've been trying to get MOD_WSGI working on Apache via XAMPP on my Mac OS X Snow Leopard all day today without any success. I've followed all the instructions, searched the interne …
0
votes
1answer
367 views
Django, mod-wsgi, and daemon mode; problem “bash:fork:cannot allocate memory”
Hello,
I would appreciate if someone can provide feedback or point me in the correct direction. I am unable to execute any terminal commands on a remote server when three django …
2
votes
3answers
108 views
How to Disable Django / mod_WSGI Page Caching
I have Django running in Apache via mod_wsgi. I believe Django is caching my pages server-side, which is causing some of the functionality to not work correctly.
I have a countdow …
0
votes
3answers
65 views
Django + WSGI: Refreshing Issues?
I'm developing a Django site. I'm making all my changes on the live server, just because it's easier that way. The problem is, every now and then it seems to like to cache one of t …
1
vote
2answers
30 views
Detect prematurely closed connection in web.py
Is there a way in Web.py to detect and handle connection being closed by user while the request is processing?
I tried setting unloadhook handler, but it doesn't get called in thi …
1
vote
1answer
167 views
Run Django with URL prefix (”subdirectory”) - App works, but URLs broken?
Below are the relevant configuration files, also at http://dpaste.com/97213/ .
The apache config is currently working, because accessing 'example.com/' shows me the index.html fil …
0
votes
2answers
52 views
Mixing Python web platforms with Mediawiki
Is anyone developing application integrated with Mediawiki - using Django or other Python web development platforms using mod_wsgi?
Would be very interested to find out what has …
