mamcxyz wrote: > No exist a way directly in python or django? > > My first release of this thing become under a low-end vps and putting > another memory dog (I have a limit of 10 process?) is a issue. >
btw. do you really need a sophisticated search system? for example, i only needed a simple search for a news-site... so i created a new model (Index) which contained only a TextField. and in every model i overrided the save method, which collected all the textfield+charfield content from the object, and created an Index object for that content. then the search became a simply __contains search in the Index. of course this might become slow when the amount of data increases, and does not allow any "cool" searches, like phonetic or fuzzy searches. but for now it worked, was easy to code and did not need any heavy dependencies. gabor --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---