Re: Pass Thru Image Proxy Patch Interest?

2010-04-14 Thread Ed Menendez
it can be turned off if disk space is limited locally. Re: 1.2 No problem. Should I not even open a ticket with the patch until after or is it OK to do now? On Apr 14, 3:14 am, Russell Keith-Magee wrote: > On Wed, Apr 14, 2010 at 10:42 AM, Ed Menendez wrote: > > Is there any interest in

Pass Thru Image Proxy Patch Interest?

2010-04-13 Thread Ed Menendez
Is there any interest in turning this into a patch for a new feature? http://menendez.com/blog/using-django-as-pass-through-image-proxy/ It should only be used on dev servers but it really is a huge time saver for developers vs rsync and since it keeps images locally it's a better solution than p

Re: DatabaseWrapper operators

2009-05-04 Thread Ed Menendez
It might be easier to write a manager depending on what exactly you're trying to do. In my opinion you should write an operator for a database feature that you're trying to implement but if you're trying to cleanup text or transform text in some way... I think a manager might be a better solution.

Re: Problem with too many indexes (SVN-7438) and (slightly) better index on auth_user?

2008-04-29 Thread Ed Menendez
> the hash is calculated completely outside of SQL, so there's no need > to index password. > > On Apr 29, 12:15 pm, Ed Menendez <[EMAIL PROTECTED]> wrote:> When creating a > one to one table or a table with a compound key.. > > Django wants to create an index fo

Problem with too many indexes (SVN-7438) and (slightly) better index on auth_user?

2008-04-29 Thread Ed Menendez
When creating a one to one table or a table with a compound key.. Django wants to create an index for the PK/alternate key and also another index on the same column(s) because it's a FK. For example, if I have: class League(models.Model): name= models.CharField(max_length=

django_session table

2008-04-29 Thread Ed Menendez
We might want to consider a performance boost for those that choose to use the django_session table over memcached. If django_session.session_data is made a char(40) instead of a varchar(40) most DB engines will make that row a fixed length row (longtext/blobs are stored outside the row with a poi

American Idol game developed in Django

2008-02-18 Thread Ed Menendez
This was our first site in Django and also our intro to Python. We used to play this on a spreadsheet with friends but were able to develop the replacement in about a week with Django. Probably could have been done much quicker if we weren't newbies to the framework. http://aigame.digitalhaiku.co