wp-redisearch
wp-redisearch copied to clipboard
Please support Chinese documents in wp-redisearch
Hi,
When I using Chinese in RediSearch with redis-cli, it's working.
But I using the same Chinese keywords to search in wp-search, no search results can be obtained.
Thanks.
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;
});
Ok thanks alot for your help.
I've added an option to select the default language.