How hard is it to incorporate full text search with SQL Server?

前端 未结 5 884
被撕碎了的回忆
被撕碎了的回忆 2020-12-29 09:19

I am building a C#/ASP.NET app with an SQL backend. I am on deadline and finishing up my pages, out of left field one of my designers incorporated a full text search on one

5条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-29 10:00

    I've been there. It works like a charm until you start to consider scalability and advanced search functionalities like search over multiple columns with giving each one different weight values.

    For example, the only way to search over Title and Summary columns is to have a computed column with SearchColumn = CONCAT(Title, Summary) and index over SearchColumn. Weighting? SearchColumn = CONCAT(CONCAT(Title,Title), Summary) something like that. ;) Filtering? Forget about it.

提交回复
热议问题