On Wednesday 11 July 2007 11:31:15 paramedic wrote: > doing this is most suitable for my case in my oppinion. also there is > a problem with the ascii issue. > > In turkish the lowercase of I is ı however in in english the lowercase > of I is i. I think I have to code it carefully :) > > I was thinking about turbolucene as it supports fuzzy search which is > great for me, but I think I have to wait until turbolucene gets > mature.
In PostgreSQL you can use trigrams for matching... I don't know what your database server allows you to use, but you might try and see if you can do that. With regards to the replacing of letters, you might do a conditional rule based on the encoding set. Using a default rule -- e.g. the English one -- will help you manage only the exceptions (i.e., look after the lower case using the encoding rule, if you don't get a return, try the default rule...). -- Jorge Godoy <[EMAIL PROTECTED]> --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/turbogears?hl=en -~----------~----~----~----~------~----~------~--~---

