Re: Implementing Full Text Search in Django --Ticket #3254

2013-03-21 Thread Karen Tracey
On Thu, Mar 21, 2013 at 9:51 PM, Luke Sneeringer wrote: > I would expect that the biggest problem with implementing something like > this would be that MySQL is going to be a tough cookie to address. InnoDB > supports foreign key constraints but not full-text indexing, while MyISAM > supports full

Re: memory leak in django 1.5

2013-03-21 Thread Craig de Stigter
Karen Tracey saves the day! Thanks so much, seems likely that's it :) Craig de Stigter On Friday, March 22, 2013 2:25:04 PM UTC+13, Karen Tracey wrote: > > On Thu, Mar 21, 2013 at 9:00 PM, Craig de Stigter > > > wrote: > >> Hi everyone >> >> (cross-posted because this seems relevant to both dj

Re: memory leak in django 1.5

2013-03-21 Thread Craig de Stigter
Karen Tracey saves the day! Thanks so much, seems likely that's it :) Craig de Stigter On Friday, March 22, 2013 2:25:04 PM UTC+13, Karen Tracey wrote: > > On Thu, Mar 21, 2013 at 9:00 PM, Craig de Stigter > > > wrote: > >> Hi everyone >> >> (cross-posted because this seems relevant to both dj

Re: Implementing Full Text Search in Django --Ticket #3254

2013-03-21 Thread Javier Guerra Giraldez
On Thu, Mar 21, 2013 at 8:51 PM, Luke Sneeringer wrote: > InnoDB supports foreign key constraints but not full-text indexing, while > MyISAM supports full-text indexing but not foreign-key constraints. InnoDB does support full-text search since MySQL 5.6 http://www.drdobbs.com/database/full-te

Re: Implementing Full Text Search in Django --Ticket #3254

2013-03-21 Thread Luke Sneeringer
On Mar 21, 2013, at 7:00 PM, Russell Keith-Magee wrote: > > In the case of PostgreSQL, I suspect there will also be some work required > constructing a full-text index on text columns -- optionally, since indices > aren't free to create, so they can't be turned on by default. This isn't rea

Re: memory leak in django 1.5

2013-03-21 Thread Karen Tracey
On Thu, Mar 21, 2013 at 9:00 PM, Craig de Stigter wrote: > Hi everyone > > (cross-posted because this seems relevant to both django-users and > developers, and both might have experienced this problem) > > We've noticed a gradual increase in memory usage for our apache processes > since upgrading

memory leak in django 1.5

2013-03-21 Thread Craig de Stigter
Hi everyone (cross-posted because this seems relevant to both django-users and developers, and both might have experienced this problem) We've noticed a gradual increase in memory usage for our apache processes since upgrading to django 1.5. Here is a graph showi

Re: Implementing Full Text Search in Django --Ticket #3254

2013-03-21 Thread Russell Keith-Magee
On Thu, Mar 21, 2013 at 3:06 PM, Bharadwaj Desikan wrote: > Hi Guys, > > I would like to Contribute Towards Implementing Full Text Search in the > Django and > have seen the following ticket > > https://code.djangoproject.com/ticket/3254#no1 > > If someone can throw some light on What is Expected

Re: An idea for the URL dispatcher

2013-03-21 Thread Carl Meyer
Hi Daniele, On 03/21/2013 02:07 AM, Daniele Procida wrote: > I think it would at minimum require hooks so that the URL dispatcher > could call other functions, not just views. > > So: > > * the URL dispatcher could be invoked with a special argument when > you want it not to call views but perfo

Re: Django split settings and environment variables

2013-03-21 Thread Felipe Prenholato
You can use both. If you put exports in your .bashrc you will have it for all your terminal session. When you run a bash script to load uwsgi from supervisor as example, you need to load this .bashrc with source. It's same as use a command line like: SOMEAPP_DB_USER="someapp" SOMEAPP_DB_PASSWORD=

Django split settings and environment variables

2013-03-21 Thread demet8
I have a common.py, dev.py, and prod.py for my Django settings files. All files inherit from common.py. I want to keep my database passwords, database URL, etc stored as environment variables. I have researched the topic but I am not sure If I have a clear understanding of it. I am hoping I can

Implementing Full Text Search in Django --Ticket #3254

2013-03-21 Thread Bharadwaj Desikan
Hi Guys, I would like to Contribute Towards Implementing Full Text Search in the Django and have seen the following ticket https://code.djangoproject.com/ticket/3254#no1 If someone can throw some light on What is Expected on the Postgre side .. I would like to give a shot to Index for Managing

Re: Goodbye, Malcolm

2013-03-21 Thread Antoni Aloy
R.I.P. Malcolm, Thanks for all you've done for the community. 2013/3/21 Meir Kriheli > RIP Malcolm :-( > > > On Tue, Mar 19, 2013 at 11:57 PM, Val Neekman wrote: > >> Met him for the first time in DjangoCon 2012. What a down to earth guy. >> >> He'll be missed. >> >> Val >> Sent from my mobile

Re: Goodbye, Malcolm

2013-03-21 Thread Meir Kriheli
RIP Malcolm :-( On Tue, Mar 19, 2013 at 11:57 PM, Val Neekman wrote: > Met him for the first time in DjangoCon 2012. What a down to earth guy. > > He'll be missed. > > Val > Sent from my mobile device. > > On 2013-03-19, at 3:25 PM, Leon Matthews wrote: > > > On 20 March 2013 06:01, Jacob Kapl

Re: An idea for the URL dispatcher

2013-03-21 Thread Daniele Procida
On Wed, Mar 20, 2013, Carl Meyer wrote: >> Often - not always but often - a Django URL will map to a model >> instance via a URLconf and a view >I think this is an interesting idea for some specific use cases, but I >don't think its implementation belongs in the core url-resolver code, >for a co