Re: django cache (memcache) items are not readable between processes

2011-02-23 Thread dcoy
I just tested with the filecache as well, same problem. On Feb 23, 7:47 pm, dcoy <mt02c...@gmail.com> wrote: > Hi, > I have problems using the django cache. The cached items are not > readable between processes it seems... ? > > Testing on the production server using two ssh

django cache (memcache) items are not readable between processes

2011-02-23 Thread dcoy
Hi, I have problems using the django cache. The cached items are not readable between processes it seems... ? Testing on the production server using two ssh sessions in parallel, and setting the cache in one and reading in the other using the memcache backend. I ran them each one line at a time,

Ordering across many related tables

2008-09-17 Thread dcoy
I'm trying out chartdirector and storing chart definitions in a database. For you who are not familiar with chartdirector it generates charts by defining content in layers. The order of the layers determine the order it is drawn so it is important to get the order right. Now there are different

Re: locale name conflict (deploy issue)

2008-08-30 Thread dcoy
oh sh*t, that was it! So stupid :) Thanks! On 24 Aug, 21:01, msaelices <[EMAIL PROTECTED]> wrote: > Maybe you have an __init__.py inside locale directory? > > On 16 ago, 13:12, dcoy <[EMAIL PROTECTED]> wrote: > > > Hi, > > > I'm trying to deploy my dj

Using django test suite with standalone script

2008-05-01 Thread dcoy
Simply put I have a system like this (everything implemented as python scripts) * Socket server - The server receives connections from distributed clients (over GPRS). - The clients send data to the server. - The server uses django models to save the data to database. * Test client - Runs a