You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All example that I saw are string-based searches. However, can riot somehow be used as/for a file-based search tool?
Basically it'll be just like grep, but using its persistent index to speed up the searches, while supporting 中文分词 at the same time.
The application scenario is that I have a huge collection of files in Chinese, thousands of them, thus I need something to search through them quickly, with the help of the pre-built indexes, as the content of the files will not be change (or very rarely), but more and more files are added daily. I haven't found any tools that does a good job in Chinese content search yet.
Description
All example that I saw are string-based searches. However, can
riotsomehow be used as/for a file-based search tool?Basically it'll be just like
grep, but using its persistent index to speed up the searches, while supporting 中文分词 at the same time.The application scenario is that I have a huge collection of files in Chinese, thousands of them, thus I need something to search through them quickly, with the help of the pre-built indexes, as the content of the files will not be change (or very rarely), but more and more files are added daily. I haven't found any tools that does a good job in Chinese content search yet.
Is it possible? if so, sample code appreciated.
Thanks