We had to disable our search feature because it was locking up the forums.
the POST table is type MyISAM which locks the entire table during a search. If we changed the table type to InnoDB, searches will be implemented using row level locking instead of locking the entire table. Is it possible to implement this change?

Thanks
Jim Quinn