QUOTE(kcornwell @ Jan 21 2006, 10:55 PM)

They should wait for invsion to support mySQL 5.0. With 5.0 you can use triggers (and stored proceedures). Set them up to fire with the appropriate update, drop, insert statements. Invsion has said it's coming soon. However invision says a lot of things. So who knows. Other than using triggers I can only see that they would have to run some fairly complex scripts to keep everything in sync. I'm sure someone out there in the Invision MB world has done this allready. I would like to know how xbs is going about this.

MySQL supports replication, it's a standard feature of RDBMS systems. The data would be automatically (and almost instantly) replicated to another box, and this box would handle all the search queries. Replication is a common way to perform backups / database server redundancy too. I don't see how support for triggers will help in this situation.
At the database admins: If you're not doing so already, it may be worth considering using InnoDB as the storage mechanism instead of MyISAM for your big tables - posts, sessions etc.
If there is an update/insert/delete query on a MyISAM table, the whole table is locked until that operation finishes. If there's a lot of concurrent users (you clearly do have!) then that is an awful lot of locks and a lot of people waiting around - hence a lot of connections left open and a lot of wasted resources.
InnoDB supports row-level locking, so only the row being altered is locked, leaving the rest of the table accessible to others. However InnoDB is really slow with searches.. So i'm not sure what's going to give you better performance, the resources saved by InnoDB might allow you to turn search back on.
I think a separate replication server for the searches is the best solution though, although not the simplest!
I've got a lot of experience with linux server administration if i can ever be of any help just ask..