views_fastsearch 5.x-2.0
Posted by douggreen on February 19, 2008 at 1:43pm
| Download | Size | md5 hash |
|---|---|---|
| views_fastsearch-5.x-2.0.tar.gz | 15.19 KB | d719b815e7e66c4d92f0e7bac732661d |
| views_fastsearch-5.x-2.0.zip | 18.43 KB | e1a6813beb8c4dfea19871b1ad49fd87 |
Last updated: December 25, 2010 - 00:08
Release notes
Per the conversation on the devel thread, I'm creating new latest releases of several modules. This one has been stable for quite a long time...
Read moreviews_fastsearch 5.x-2.x-dev
Posted by douggreen on August 11, 2007 at 4:33am
| Download | Size | md5 hash |
|---|---|---|
| views_fastsearch-5.x-2.x-dev.tar.gz | 12.91 KB | 31aea21319473b47304e294a0a830cd7 |
| views_fastsearch-5.x-2.x-dev.zip | 14.09 KB | e8b841bc9a30dcd3339f36203cc30df4 |
Last updated: February 25, 2011 - 07:57
Release notes
- significantly faster than the previous fastsearch
- solves the multi-term join problem (5-6 term searches on large sites experienced slowness; plus mysql limits joins to 21 tables)
- fixes for OR and EXCLUDE terms
- added score field
- better score sorting, not perfect yet
- added search results view
To take advantage of the new searching, you should:
- ALTER TABLE search_index ENGINE=MyISAM; (you must do this yourself, but a warning is shown on admin/settings/search if this is not done)
- ALTER TABLE search_index ADD INDEX (fromsid, word); (now part of the update .install process).
- ALTER IGNORE TABLE search_index ADD UNIQUE INDEX (sid, word, type, fromsid); (see #143160, now part of the update .install process).
- admin/settings/search – select UNIQUE
- admin/settings/search – set the number of comments node rank to 0 (without which the performance results are not reproducable)
- apply the views subqueries patch - #143888
views_fastsearch 5.x-1.1
Posted by douggreen on April 16, 2007 at 11:25am
| Download | Size | md5 hash |
|---|---|---|
| views_fastsearch-5.x-1.1.tar.gz | 7.91 KB | 2fafcd7adcf73f56ae497b4b446271cd |
| views_fastsearch-5.x-1.1.zip | 8.77 KB | be275490c83edfc1fb00fdd89988e6f7 |
Last updated: December 25, 2010 - 00:08
Release notes
stable 5.x release
views_fastsearch 5.x-1.0
Posted by douggreen on January 16, 2007 at 1:37pm
| Download | Size | md5 hash |
|---|---|---|
| views_fastsearch-5.x-1.0.tar.gz | 7.73 KB | 23864840e6d1a5b06058c6fc7b174233 |
| views_fastsearch-5.x-1.0.zip | 8.58 KB | ac72aca6830cae9be0178232ce543c82 |
Last updated: December 25, 2010 - 00:08
Release notes
stable 5.x release
views_fastsearch 4.7.x-1.0
Posted by douggreen on December 8, 2006 at 4:32am
| Download | Size | md5 hash |
|---|---|---|
| views_fastsearch-4.7.x-1.0.tar.gz | 7.67 KB | 8b4459a30c800c3fb8510ec000d6baa2 |
| views_fastsearch-4.7.x-1.0.zip | 8.3 KB | 1c9ddebce6c6877cf04c629929961eeb |
Last updated: December 25, 2010 - 00:08
Release notes
Stable 4.7 version
views_fastsearch 4.7.x-1.x-dev
Posted by douggreen on December 8, 2006 at 4:03am
| Download | Size | md5 hash |
|---|---|---|
| views_fastsearch-4.7.x-1.x-dev.tar.gz | 7.78 KB | f0e7b9d5ec372a850a42a3202abce7c6 |
| views_fastsearch-4.7.x-1.x-dev.zip | 8.37 KB | 35ec0dea56f2a8fd975931ff4ff60aa9 |
Last updated: February 25, 2011 - 07:57
Release notes
4.7 development version
views_fastsearch 5.x-1.x-dev
Posted by douggreen on December 8, 2006 at 4:03am
| Download | Size | md5 hash |
|---|---|---|
| views_fastsearch-5.x-1.x-dev.tar.gz | 15.14 KB | fa53b929bfc3bd1b1c6fef2ca4390b50 |
| views_fastsearch-5.x-1.x-dev.zip | 18 KB | dcf86e1a5c601fb76df4ac93d971b410 |
Last updated: February 25, 2011 - 07:57
Release notes
The new improved views fastsearch development is mostly done. It’s time for testing and fixing!
- significantly faster than the previous fastsearch
- solves the multi-term join problem (5-6 term searches on large sites experienced slowness; plus mysql limits joins to 21 tables)
- fixes for OR and EXCLUDE terms
- added score field
- better score sorting, not perfect yet
- added search results view
To use the 5.x-dev branch, you must:
- ALTER TABLE search_index ENGINE=MyISAM; (you must do this yourself, but a warning is shown on admin/settings/search if this is not done)
- ALTER TABLE search_index ADD INDEX (fromsid, word); (now part of the update .install process).
- ALTER IGNORE TABLE search_index ADD UNIQUE INDEX (sid, word, type, fromsid); (see #143160, now part of the update .install process).
- admin/settings/search – select UNIQUE
- admin/settings/search – set the number of comments node rank to 0 (without which the performance results are not reproducable)
- apply the views subqueries patch - #143888