Re: Saving Oracle Connection across requests

2009-09-14 Thread Rafael Ferreira
If you are on 11g you can try to use this: http://www.oracle.com/technology/tech/oci/pdf/oracledrcp11g.pdf otherwise you can look for something like mysqlproxy for oracle (if such thing exist). The real question here tho is why do you care so much about reusing connections? I can tell you that co

Re: interaction of django with paypal

2009-08-30 Thread Rafael Ferreira
you could also use this (I haven't used it myself but looks promising): http://github.com/johnboxall/django-paypal/tree/master and it will handle the IPN for you. - raf On Sun, Aug 30, 2009 at 9:07 AM, orschiro wrote: > > Hello guys, > > first thank you for your suggestions. I have to admit I'

Re: Django scalability with files

2009-08-27 Thread Rafael Ferreira
The queue idea is a good one, and you can use Gearman to do that really easily. Another, even simpler, way to handle this is to use some kind of shared NFS mount for the storage. All things being equal, scaling a filer or SAN will be much easier than scaling your DB, specially if - like most simila

Re: Logging mechanism in Django

2009-08-17 Thread Rafael Ferreira
the problem is that logging to a file is not going to work in a multiprocess environment. I'm using the logging library configured to log to syslog with fcgi and it is working out quite well. On Mon, Aug 17, 2009 at 11:10 AM, Mike Ramirez wrote: > On Monday 17 August 2009 10:24:18 am Lokesh Mare