front / wp-redisearch

Flexible and fast search engine for Wordpress.
27 stars 5 forks source link

Please support Chinese documents in wp-redisearch #12

Open fuzqing opened 3 years ago

fuzqing commented 3 years ago

Hi,

When I using Chinese in RediSearch with redis-cli, it's working.

image

But I using the same Chinese keywords to search in wp-search, no search results can be obtained.

image

Thanks.

foadyousefi commented 3 years ago

So sorry for the late answer. The language is set to English by default, but I will add support for selecting the language as soon as possible.

In the meanwhile, you can use wp_redisearch_index_language filter. Something like:

add_filter( 'wp_redisearch_index_language', function( $language, $post_id ) {
  if ( $post_id == 123 ) {
    return 'chinese';
  }
  return $language;
});
fuzqing commented 3 years ago

Ok thanks alot for your help.

foadyousefi commented 3 years ago

I've added an option to select the default language.