FORMSOF Thesaurus in SQL Server

拟墨画扇 提交于 2019-12-24 07:16:36

问题


Has anyone done any performance measures with this in terms of speed where there is a high number of substitutes for any given word. For instance, I want to use this to store common misspellings; expecting to have 4-10 variations of a word.

<expansion>
   <sub>administration</sub>
   <sub>administraton</sub>
   <sub>aministraton</sub>
</expansion>

When you run a fulltext search, how does performance degrade with that number of variations? for instance, I assume it has to do a separate fulltext search performing an OR?

Also, having say 20/30K entries in the Thesaurus xml file - does this impact performance?


回答1:


No, but performance testing is very often quite system-specific. I'd suggest putting together some sample data and running your own test cases is your best bet.



来源:https://stackoverflow.com/questions/2160884/formsof-thesaurus-in-sql-server

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!