>SQLite has a great full-text search engine built in.  I've long thought that
>> it would be great to add an interface to this in Fossil.  We could index
>> diffs for all check-ins, all wiki, all tickets, all Blog entries, etc, and
>> then have a Google-like interface for searching for things.  Of course, the
>> full text index would likely double the size of the repository file, but in
>> this era of TB-size disk drives, is that really an issue?
>>

>Such a search interface would be awesome! I don't think the size increase is
>an issue at all. The only case may be backups, but even they can be done
>using cloning - that would mean that the search index shouldn't sync.

Because fossil stores artifacts as zlib compressed deltas, full text searching
using the existing fossil SQLite database is not possible.  One would
either have
to create a separate database containing the full set of artifacts or create a
program to reconstruct each artifact of the database and do a search on each
artifact separately.  Does anybody have a better idea?

David Shinn
_______________________________________________
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Reply via email to