Indexing feature

How can I enable my admin to index the tables, just after he/she makes
change into database.

you can trigger a rake task

Awijeet Mr. wrote:

How can I enable my admin to index the tables, just after he/she makes
change into database.

The database should take care of its own indexing. Your application
normally does not need to worry about this once the indices are set up.

Or am I misunderstanding your question?

Best,

Marnen Laibow-Koser
http://www.marnen.org
[email protected]

oops got confused with full text indexing i thought you where talking
about
sphinx or something like it

On Tue, Sep 14, 2010 at 12:46 PM, Marnen Laibow-Koser

On Sep 13, 7:05 pm, “Awijeet Mr.” [email protected] wrote:

How can I enable my admin to index the tables, just after he/she makes
change into database.

Just create new controller and execute in index action a sql statement
that will return list of database tables. With that you will have live
view of tables list.

Robert Pankowecki