can some one give me an idea to build jquery Suggest with sphinx search? i am newbie with sphinx i already have my searchd run and i can make a simple search.
sorry for my bad english.
Use indexer and --buildstops to get a list of top words.
Import the words into a database table. (and a autoincrement column to get a unique id)
Create a sphinx index on this table - and enable min_prefix_len
Setup a script that runs the users query against this index, and looks up the full words in the database, and returns it to the Javascript client library.