views:

43

answers:

1

hi

i want to know how to get all column value from table using sphinx search...

i have configuration file, that file can get only one field from table.

but i need all field value.

where will i modify for getting all field from table.

thanks and advance...

+1  A: 

Sphinx will only return the document id, weight and attributes. Use MySQL to get the rest of the values.

  1. Do a Sphinx search, which will give you a list of document IDs
  2. For every document ID, do a MySQL query which gives you the values for all fields.
Sjoerd
yes i was thinks.but i dont know correct..
zahir hussain

related questions