June 19, 2013

Comment: EuroOSCON 2006 - High Performance FullText Search

… you have to identify your performance goals and than check solutions. For many data sizes or search requirements MySQL FullText search performance is unfortunately showstopper. There are some examples and benchmarks in presentation :) For tiny data size, ie search for…

Post: Sphinx search performance optimization: attribute-based filters

…of a poor Sphinx search performance I find our customers face is misuse of search filters. In this …returned in 155ms. Doing the same thing in MySQL, assuming user_id is indexed and in cache… a selective search and then filtering, using attribute is orders of magnitude better than using a fulltext key…

Post: EuroOSCON 2006 - High Performance FullText Search

… gave a talk on High Performance FullText Search for Database Content which is now available for download from MySQL Performance Presentations page We have plans… helpful for full text search benchmarks with your own data. It was great to see a lot of MySQL guys on the… conference which surprisingly attracted very few people – there were more MySQL current and ex employees than attendees. Might be it was…

Post: MySQL Server Variables - SQL layer or Storage Engine specific.

MySQL Server has tons of variables which may be adjusted to change behavior or for performance purposes. They are documented in the…_len, ft_query_expansion_limit, ft_stopword_file FullText search related variables. As FullText currently works with MyISAM tables these are MyISAM related…

Post: InnoDB Full-text Search in MySQL 5.6 (part 1)

search in MySQL 5.6 (part 1) in MySQL 5.6 is syntactically identical to MyISAM full-text search…traditional MyISAM FTS. We’ll get to performance in the third installment. For now, the…mysql> set global innodb_ft_aux_table=’test/dir_test_innodb’; mysql> set global innodb_optimize_fulltext_only=1; mysql

Post: InnoDB Full-text Search in MySQL 5.6: Part 2, The Queries!

…” align=”alignright” width=”214″] InnoDB Full-text Search in MySQL 5.6: Part 2, The Queries![/… all three search terms, and in this case, both MyISAM and InnoDB FTS performed identically and …search results, there is at least one potential escape hatch from this rabbit hole. When defining a FULLTEXT

Comment: EuroOSCON 2006 - High Performance FullText Search

… of mysql fulltext for the forum at http://www.tbg.nu In my case the problem with mysql fulltext were that my searches performed: * Using boolean search:-) All the three reasons above made mysql fulltext to virtually puke when a client performed a search which contained several commonly existing word. I…

Comment: Full text search for all MySQL Storage Engines

… internally the mysql server needs to create some sort of temporary table (otherwise someone should explain to me why mysqls fulltext takes more… searches etc will be implemented in near future according to email conversations I have had with the developer and hopefully the performance

Page: Presentations

… topic as performance optimization in such short timeframe. Download High Performance FullText Search EuroOSCON 2006, Brussels, Belgium, September 2006 This presentation speaks about FullText search techniques for content stored in database focusing on delivering high performance for large databases. We look at performance properties of MySQL build…

Comment: Full text search for all MySQL Storage Engines

7. peter: All results have been performed in boolean search mode. That is because in my case the client is … such bad result when using mysql fulltext because there will be too much data to process for mysql where the vectorstorage solution solves…, but when it comes to “10 most common words” search the mysql fulltext in boolean mode takes more than 800 seconds on this…