How-to: Ranking Search Results

前端 未结 4 880
忘掉有多难
忘掉有多难 2020-12-17 20:48

I have a webapp development problem that I\'ve developed one solution for, but am trying to find other ideas that might get around some performance issues I\'m seeing.

4条回答
  •  Happy的楠姐
    2020-12-17 21:15

    You'll probably get much better performance if you used a data structure designed for search tasks rather than a database. For example, you might try looking at building an inverted index. Rather than writing it youself, however, you might also want to look into something like Lucene which does most of the work for you.

提交回复
热议问题