Opened 15 years ago

Closed 15 years ago

#11427 closed (invalid)

full text searching or indexer?

Reported by: m4rt0g1 Owned by: nobody
Component: Uncategorized Version: 1.0
Severity: Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

which is the best way? in my computer is using sqlite 3 but in server using postgresSQL . and i doesnt get any way which is simplest that i can do

example:

class person_data(models.Model):

first_name = models.CharField(max_length=25)
middle_name = models.CharField(max_length=25)
last_name = models.CharField(max_length=25)
age = models.IntegerField(default=17)

i want to search base on 1 form field and it could search whether the result come from first or middle or last or age? like yahoo mail search.

please help me... thanks ... you can reply my message into craker_devil84@…

Change History (1)

comment:1 by Russell Keith-Magee, 15 years ago

Resolution: invalid
Status: newclosed

If you have a "how to", or "what is the best way" question, please ask it on Django-users.

Note: See TracTickets for help on using tickets.
Back to Top