Plugin info

Total downloads: 1,047
Active installs: 0
Total reviews: 0
Average rating: 0
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 1
Last updated: 5/22/2012 (5018 days ago)
Added to WordPress: 5/22/2012 (13 years old)
Minimum WordPress version: 3.1.0
Tested up to WordPress version: 3.1.4
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 5018 days ago

20/100

Is Wp CJK Fulltext Index abandoned?

Possibly abandoned (last update 5018 days ago).

Compatibility

Requires WordPress: 3.1.0
Tested up to: 3.1.4
Requires PHP: f

Languages

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

No similar plugins found yet.

Description

This plugin port the full text index search functionality from mediawiki (ver 1.19.0) to wordpress.

It improve the searching speed by using MATCH AGAINST than LIKE and also solve the full text index problem with cjk (Chinese, Japanese, and Korean) words.

This plugin will create a new database table with post ID and text content.

Installation

Currently this plugin will not change the original wordpress search function.
If you like to use it there are some custom function you need to add to your theme.

  1. hook the “save_post” action to choose which post you need to store full text to this plugin.

    cjkfxi_set_post($post->ID, $fulltext);  // $fulltext can be $_POST['post_title'] or $_POST['content'] ... etc or combine each together 
  2. hook the “posts_clauses_request” filter to add additional JOIN and WHERE with the search keywords to the exist SQL pattern.

    $key = get_query_var('key');  cjkfxi_set_posts_clauses_request($clauses, $key); 
  3. Remember to remove filter in the “posts_clauses_request” filter function because you just need to run it once.

  4. The original WP_Query use SQL_CALC_FOUND_ROWS to calculate the total, if you have lots of post, you can add “no_found_rows” to WP_Query’s arguments and do the count yourself by adding second parameter to hook “posts_clauses_request”.

The example of the “posts_clauses_request” filter: https://gist.github.com/2761739

Frequently Asked Questions

No FAQ available

Review feed

No reviews available

Screenshots

No screenshots available

Changelog

Not yet.