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,

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

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