traverseda / iiab-searchServices

Search services I'm writing for my personal data-archive/internet-in-a-box
GNU Affero General Public License v3.0
3 stars 0 forks source link

Search results highlight #1

Closed traverseda closed 5 years ago

traverseda commented 5 years ago

Right now we use sumy in order to summarize a page in the search results. That's because I haven't been able to get xapians search highlight feature to work from inside python.

As everything is (supposed to be) local, I'd be inclined to not store a separate copy of the text, but instead to fetch a new copy of the text from the original resource. This would be completely impractical for a real search results page, but for this one where storage space is important I think it should work fine.

traverseda commented 5 years ago

Done