实例介绍
由于Xapian-1.2.22 windows下在官网暂时没人维护,自己通过不断尝试,在vs2005下加入新增的cc文件,最终编译通过
【实例截图】
【核心代码】
16359647778632391120.rar
├── xapian-bindings-1.2.22
│ ├── aclocal.m4
│ ├── AUTHORS
│ ├── ChangeLog
│ ├── config.guess
│ ├── config.h.in
│ ├── config.sub
│ ├── configure
│ ├── configure.ac
│ ├── COPYING
│ ├── csharp
│ │ ├── AssemblyInfo.cs.in
│ │ ├── docs
│ │ │ ├── examples
│ │ │ │ ├── SimpleExpand.cs
│ │ │ │ ├── SimpleIndex.cs
│ │ │ │ └── SimpleSearch.cs
│ │ │ └── index.html
│ │ ├── generated-csharp
│ │ │ ├── Auto.cs
│ │ │ ├── BM25Weight.cs
│ │ │ ├── BoolWeight.cs
│ │ │ ├── Brass.cs
│ │ │ ├── Chert.cs
│ │ │ ├── Compactor.cs
│ │ │ ├── Database.cs
│ │ │ ├── DateValueRangeProcessor.cs
│ │ │ ├── DecreasingValueWeightPostingSource.cs
│ │ │ ├── Document.cs
│ │ │ ├── Enquire.cs
│ │ │ ├── ESet.cs
│ │ │ ├── ESetIterator.cs
│ │ │ ├── ExpandDecider.cs
│ │ │ ├── FixedWeightPostingSource.cs
│ │ │ ├── Flint.cs
│ │ │ ├── InMemory.cs
│ │ │ ├── KeyMaker.cs
│ │ │ ├── MatchDecider.cs
│ │ │ ├── MatchSpy.cs
│ │ │ ├── MSet.cs
│ │ │ ├── MSetIterator.cs
│ │ │ ├── MultiValueKeyMaker.cs
│ │ │ ├── MultiValueSorter.cs
│ │ │ ├── NumberValueRangeProcessor.cs
│ │ │ ├── PositionIterator.cs
│ │ │ ├── PostingIterator.cs
│ │ │ ├── PostingSource.cs
│ │ │ ├── Query.cs
│ │ │ ├── QueryParser.cs
│ │ │ ├── Registry.cs
│ │ │ ├── Remote.cs
│ │ │ ├── RSet.cs
│ │ │ ├── SimpleStopper.cs
│ │ │ ├── Sorter.cs
│ │ │ ├── Stem.cs
│ │ │ ├── StemImplementation.cs
│ │ │ ├── Stopper.cs
│ │ │ ├── StringValueRangeProcessor.cs
│ │ │ ├── SWIGTYPE_p_std__string.cs
│ │ │ ├── SWIGTYPE_p_std__vectorT_std__string_t.cs
│ │ │ ├── SWIGTYPE_p_std__vectorT_Xapian__Query_t.cs
│ │ │ ├── TermGenerator.cs
│ │ │ ├── TermIterator.cs
│ │ │ ├── TradWeight.cs
│ │ │ ├── ValueCountMatchSpy.cs
│ │ │ ├── ValueIterator.cs
│ │ │ ├── ValueMapPostingSource.cs
│ │ │ ├── ValuePostingSource.cs
│ │ │ ├── ValueRangeProcessor.cs
│ │ │ ├── ValueSetMatchDecider.cs
│ │ │ ├── ValueWeightPostingSource.cs
│ │ │ ├── Version.cs
│ │ │ ├── Weight.cs
│ │ │ ├── WritableDatabase.cs
│ │ │ ├── Xapian.cs
│ │ │ └── XapianPINVOKE.cs
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── SmokeTest.cs
│ │ ├── util.i
│ │ ├── xapian_wrap.cc
│ │ └── xapian_wrap.h
│ ├── depcomp
│ ├── generic
│ │ ├── except.i
│ │ └── generic.mk
│ ├── HACKING
│ ├── INSTALL
│ ├── install-sh
│ ├── java
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── native
│ │ │ ├── Database.cc
│ │ │ ├── Document.cc
│ │ │ ├── Enquire.cc
│ │ │ ├── ESet.cc
│ │ │ ├── ESetIterator.cc
│ │ │ ├── Makefile.am
│ │ │ ├── Makefile.in
│ │ │ ├── MSet.cc
│ │ │ ├── MSetIterator.cc
│ │ │ ├── org_xapian_XapianJNI.cc
│ │ │ ├── org_xapian_XapianJNI.h
│ │ │ ├── PositionIterator.cc
│ │ │ ├── Query.cc
│ │ │ ├── RSet.cc
│ │ │ ├── Stem.cc
│ │ │ ├── TermIterator.cc
│ │ │ ├── utils.cc
│ │ │ ├── WritableDatabase.cc
│ │ │ └── xapian_jni.h
│ │ ├── org
│ │ │ └── xapian
│ │ │ ├── Database.java
│ │ │ ├── Document.java
│ │ │ ├── Enquire.java
│ │ │ ├── errors
│ │ │ │ ├── AssertionError.java
│ │ │ │ ├── DatabaseCorruptError.java
│ │ │ │ ├── DatabaseError.java
│ │ │ │ ├── DatabaseLockError.java
│ │ │ │ ├── DatabaseModifiedError.java
│ │ │ │ ├── DatabaseOpeningError.java
│ │ │ │ ├── DocNotFoundError.java
│ │ │ │ ├── FeatureUnavailableError.java
│ │ │ │ ├── InternalError.java
│ │ │ │ ├── InvalidArgumentError.java
│ │ │ │ ├── InvalidOperationError.java
│ │ │ │ ├── LogicError.java
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── NetworkError.java
│ │ │ │ ├── NetworkTimeoutError.java
│ │ │ │ ├── RangeError.java
│ │ │ │ ├── RuntimeError.java
│ │ │ │ ├── UnimplementedError.java
│ │ │ │ ├── XapianError.java
│ │ │ │ └── XapianRuntimeError.java
│ │ │ ├── ESetIterator.java
│ │ │ ├── ESet.java
│ │ │ ├── examples
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── SimpleIndex.java
│ │ │ │ └── SimpleSearch.java
│ │ │ ├── ExpandDecider.java
│ │ │ ├── Makefile.am
│ │ │ ├── Makefile.in
│ │ │ ├── MatchDecider.java
│ │ │ ├── MSetIterator.java
│ │ │ ├── MSet.java
│ │ │ ├── PositionIterator.java
│ │ │ ├── Query.java
│ │ │ ├── RSet.java
│ │ │ ├── Stem.java
│ │ │ ├── TermIterator.java
│ │ │ ├── WritableDatabase.java
│ │ │ ├── Xapian.java
│ │ │ └── XapianJNI.java
│ │ ├── README
│ │ ├── run-java-test
│ │ └── SmokeTest.java
│ ├── java-swig
│ │ ├── docs
│ │ │ ├── examples
│ │ │ │ ├── SimpleIndex.java
│ │ │ │ └── SimpleSearch.java
│ │ │ └── index.html
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── org
│ │ │ └── xapian
│ │ │ ├── Auto.java
│ │ │ ├── BM25Weight.java
│ │ │ ├── BoolWeight.java
│ │ │ ├── Brass.java
│ │ │ ├── Chert.java
│ │ │ ├── Compactor.java
│ │ │ ├── Database.java
│ │ │ ├── DateValueRangeProcessor.java
│ │ │ ├── DecreasingValueWeightPostingSource.java
│ │ │ ├── Document.java
│ │ │ ├── Enquire.java
│ │ │ ├── ESetIterator.java
│ │ │ ├── ESet.java
│ │ │ ├── ExpandDecider.java
│ │ │ ├── FixedWeightPostingSource.java
│ │ │ ├── Flint.java
│ │ │ ├── InMemory.java
│ │ │ ├── KeyMaker.java
│ │ │ ├── MatchDecider.java
│ │ │ ├── MatchSpy.java
│ │ │ ├── MSetIterator.java
│ │ │ ├── MSet.java
│ │ │ ├── MultiValueKeyMaker.java
│ │ │ ├── MultiValueSorter.java
│ │ │ ├── NumberValueRangeProcessor.java
│ │ │ ├── PositionIterator.java
│ │ │ ├── PostingIterator.java
│ │ │ ├── PostingSource.java
│ │ │ ├── Query.java
│ │ │ ├── QueryParser.java
│ │ │ ├── Registry.java
│ │ │ ├── Remote.java
│ │ │ ├── RSet.java
│ │ │ ├── SimpleStopper.java
│ │ │ ├── Sorter.java
│ │ │ ├── StemImplementation.java
│ │ │ ├── Stem.java
│ │ │ ├── Stopper.java
│ │ │ ├── StringValueRangeProcessor.java
│ │ │ ├── SWIGTYPE_p_std__string.java
│ │ │ ├── TermGenerator.java
│ │ │ ├── TermIterator.java
│ │ │ ├── TradWeight.java
│ │ │ ├── ValueCountMatchSpy.java
│ │ │ ├── ValueIterator.java
│ │ │ ├── ValueMapPostingSource.java
│ │ │ ├── ValuePostingSource.java
│ │ │ ├── ValueRangeProcessor.java
│ │ │ ├── ValueSetMatchDecider.java
│ │ │ ├── ValueWeightPostingSource.java
│ │ │ ├── Version.java
│ │ │ ├── Weight.java
│ │ │ ├── WritableDatabase.java
│ │ │ ├── XapianConstants.java
│ │ │ ├── Xapian.java
│ │ │ └── XapianJNI.java
│ │ ├── run-java-test
│ │ ├── SmokeTest.java
│ │ ├── xapian_wrap.cc
│ │ └── xapian_wrap.h
│ ├── ltmain.sh
│ ├── lua
│ │ ├── docs
│ │ │ ├── examples
│ │ │ │ ├── simpleexpand.lua
│ │ │ │ ├── simpleindex.lua
│ │ │ │ ├── simplematchdecider.lua
│ │ │ │ └── simplesearch.lua
│ │ │ └── index.html
│ │ ├── except.i
│ │ ├── generate-lua-exceptions
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── smoketest.lua
│ │ ├── util.i
│ │ └── xapian_wrap.cc
│ ├── m4
│ │ ├── libtool.m4
│ │ ├── lt~obsolete.m4
│ │ ├── ltoptions.m4
│ │ ├── ltsugar.m4
│ │ └── ltversion.m4
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── missing
│ ├── NEWS
│ ├── perl
│ │ ├── docs
│ │ │ ├── examples
│ │ │ │ ├── full-indexer.pl
│ │ │ │ ├── full-searcher.pl
│ │ │ │ ├── simpleexpand.pl
│ │ │ │ ├── simpleindex.pl
│ │ │ │ ├── simplematchdecider.pl
│ │ │ │ └── simplesearch.pl
│ │ │ └── index.html
│ │ ├── except.i
│ │ ├── generate-perl-exceptions
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── Search
│ │ │ ├── Xapian
│ │ │ │ ├── AssertionError.pm
│ │ │ │ ├── BM25Weight.pm
│ │ │ │ ├── BoolWeight.pm
│ │ │ │ ├── DatabaseCorruptError.pm
│ │ │ │ ├── DatabaseCreateError.pm
│ │ │ │ ├── DatabaseError.pm
│ │ │ │ ├── DatabaseLockError.pm
│ │ │ │ ├── DatabaseModifiedError.pm
│ │ │ │ ├── DatabaseOpeningError.pm
│ │ │ │ ├── Database.pm
│ │ │ │ ├── DatabaseVersionError.pm
│ │ │ │ ├── DocNotFoundError.pm
│ │ │ │ ├── Document.pm
│ │ │ │ ├── Enquire.pm
│ │ │ │ ├── Error.pm
│ │ │ │ ├── ESetIterator.pm
│ │ │ │ ├── ESet.pm
│ │ │ │ ├── FeatureUnavailableError.pm
│ │ │ │ ├── InternalError.pm
│ │ │ │ ├── InvalidArgumentError.pm
│ │ │ │ ├── InvalidOperationError.pm
│ │ │ │ ├── LogicError.pm
│ │ │ │ ├── MSetIterator.pm
│ │ │ │ ├── MSet.pm
│ │ │ │ ├── MultiValueSorter.pm
│ │ │ │ ├── NetworkError.pm
│ │ │ │ ├── NetworkTimeoutError.pm
│ │ │ │ ├── PerlStopper.pm
│ │ │ │ ├── PositionIterator.pm
│ │ │ │ ├── PostingIterator.pm
│ │ │ │ ├── QueryParserError.pm
│ │ │ │ ├── QueryParser.pm
│ │ │ │ ├── Query.pm
│ │ │ │ ├── RangeError.pm
│ │ │ │ ├── RSet.pm
│ │ │ │ ├── RuntimeError.pm
│ │ │ │ ├── SimpleStopper.pm
│ │ │ │ ├── Stem.pm
│ │ │ │ ├── Stopper.pm
│ │ │ │ ├── TermGenerator.pm
│ │ │ │ ├── TermIterator.pm
│ │ │ │ ├── TradWeight.pm
│ │ │ │ ├── UnimplementedError.pm
│ │ │ │ ├── ValueIterator.pm
│ │ │ │ ├── Weight.pm
│ │ │ │ └── WritableDatabase.pm
│ │ │ └── Xapian.pm
│ │ ├── t
│ │ │ ├── 01use.t
│ │ │ ├── 02pod.t
│ │ │ ├── 03podcoverage.t
│ │ │ ├── 04functions.t
│ │ │ ├── 10query.t
│ │ │ ├── collapse.t
│ │ │ ├── create.t
│ │ │ ├── databasemodified.t
│ │ │ ├── document.t
│ │ │ ├── exception.t
│ │ │ ├── index.t
│ │ │ ├── parser.t
│ │ │ ├── search.t
│ │ │ ├── sorter.t
│ │ │ ├── stem.t
│ │ │ ├── symbol-test
│ │ │ │ ├── Makefile.PL
│ │ │ │ ├── SymbolTest.pm
│ │ │ │ ├── SymbolTest.xs
│ │ │ │ └── typemap
│ │ │ ├── symbol-test.t
│ │ │ ├── termgenerator.t
│ │ │ ├── thread.t
│ │ │ ├── tied.t
│ │ │ ├── valuerange.t
│ │ │ └── writabledatabase.t
│ │ ├── util.i.in
│ │ └── xapian_wrap.cc
│ ├── php
│ │ ├── add-php-ref-handling
│ │ ├── docs
│ │ │ ├── examples
│ │ │ │ ├── simpleexpand.php5
│ │ │ │ ├── simpleindex.php5
│ │ │ │ ├── simplematchdecider.php5
│ │ │ │ └── simplesearch.php5
│ │ │ └── index.html
│ │ ├── except.i
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── php5
│ │ │ ├── php_xapian.h
│ │ │ ├── xapian.php
│ │ │ ├── xapian_wrap.cc
│ │ │ └── xapian_wrap.h
│ │ ├── smoketest.php
│ │ └── util.i
│ ├── python
│ │ ├── doccomments.i
│ │ ├── docs
│ │ │ ├── examples
│ │ │ │ ├── simpleexpand.py
│ │ │ │ ├── simpleindex.py
│ │ │ │ ├── simplematchdecider.py
│ │ │ │ └── simplesearch.py
│ │ │ └── index.html
│ │ ├── except.i
│ │ ├── extracomments.i
│ │ ├── extra.i
│ │ ├── generate-python-exceptions
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── modern
│ │ │ ├── xapian.py
│ │ │ ├── xapian_wrap.cc
│ │ │ └── xapian_wrap.h
│ │ ├── module_top.py
│ │ ├── pythontest2.py
│ │ ├── pythontest3.py
│ │ ├── pythontest.py
│ │ ├── replicationtest2.py
│ │ ├── smoketest2.py
│ │ ├── smoketest3.py
│ │ ├── smoketest.py
│ │ ├── testsuite2.py
│ │ ├── testsuite3.py
│ │ ├── testsuite.py
│ │ ├── test_xapian_star.py
│ │ ├── util.i
│ │ └── version.i.in
│ ├── README
│ ├── ruby
│ │ ├── docs
│ │ │ ├── examples
│ │ │ │ ├── simpleexpand.rb
│ │ │ │ ├── simpleindex.rb
│ │ │ │ ├── simplematchdecider.rb
│ │ │ │ └── simplesearch.rb
│ │ │ ├── index.html
│ │ │ └── rdocs
│ │ │ ├── classes
│ │ │ │ ├── Xapian
│ │ │ │ │ ├── AssertionError.html
│ │ │ │ │ ├── BM25Weight.html
│ │ │ │ │ ├── BoolWeight.html
│ │ │ │ │ ├── Compactor.html
│ │ │ │ │ ├── DatabaseCorruptError.html
│ │ │ │ │ ├── DatabaseCreateError.html
│ │ │ │ │ ├── DatabaseError.html
│ │ │ │ │ ├── Database.html
│ │ │ │ │ ├── DatabaseLockError.html
│ │ │ │ │ ├── DatabaseModifiedError.html
│ │ │ │ │ ├── DatabaseOpeningError.html
│ │ │ │ │ ├── Database.src
│ │ │ │ │ │ ├── M000015.html
│ │ │ │ │ │ ├── M000016.html
│ │ │ │ │ │ ├── M000017.html
│ │ │ │ │ │ ├── M000018.html
│ │ │ │ │ │ └── M000019.html
│ │ │ │ │ ├── DatabaseVersionError.html
│ │ │ │ │ ├── DateValueRangeProcessor.html
│ │ │ │ │ ├── DecreasingValueWeightPostingSource.html
│ │ │ │ │ ├── DocNotFoundError.html
│ │ │ │ │ ├── Document.html
│ │ │ │ │ ├── Document.src
│ │ │ │ │ │ ├── M000020.html
│ │ │ │ │ │ └── M000021.html
│ │ │ │ │ ├── Enquire.html
│ │ │ │ │ ├── Enquire.src
│ │ │ │ │ │ └── M000010.html
│ │ │ │ │ ├── ErrorHandler.html
│ │ │ │ │ ├── Error.html
│ │ │ │ │ ├── ESet.html
│ │ │ │ │ ├── ESetIterator.html
│ │ │ │ │ ├── ESet.src
│ │ │ │ │ │ └── M000011.html
│ │ │ │ │ ├── ExpandDeciderAnd.html
│ │ │ │ │ ├── ExpandDeciderFilterTerms.html
│ │ │ │ │ ├── ExpandDecider.html
│ │ │ │ │ ├── ExpandTerm.html
│ │ │ │ │ ├── ExpandTerm.src
│ │ │ │ │ │ ├── M000007.html
│ │ │ │ │ │ └── M000008.html
│ │ │ │ │ ├── FeatureUnavailableError.html
│ │ │ │ │ ├── FixedWeightPostingSource.html
│ │ │ │ │ ├── InternalError.html
│ │ │ │ │ ├── InvalidArgumentError.html
│ │ │ │ │ ├── InvalidOperationError.html
│ │ │ │ │ ├── KeyMaker.html
│ │ │ │ │ ├── LogicError.html
│ │ │ │ │ ├── MatchDecider.html
│ │ │ │ │ ├── Match.html
│ │ │ │ │ ├── MatchSpy.html
│ │ │ │ │ ├── Match.src
│ │ │ │ │ │ ├── M000005.html
│ │ │ │ │ │ └── M000006.html
│ │ │ │ │ ├── MSet.html
│ │ │ │ │ ├── MSetIterator.html
│ │ │ │ │ ├── MSet.src
│ │ │ │ │ │ └── M000009.html
│ │ │ │ │ ├── MultiValueKeyMaker.html
│ │ │ │ │ ├── MultiValueSorter.html
│ │ │ │ │ ├── NetworkError.html
│ │ │ │ │ ├── NetworkTimeoutError.html
│ │ │ │ │ ├── NumberValueRangeProcessor.html
│ │ │ │ │ ├── PositionIterator.html
│ │ │ │ │ ├── Posting.html
│ │ │ │ │ ├── PostingIterator.html
│ │ │ │ │ ├── PostingSource.html
│ │ │ │ │ ├── Posting.src
│ │ │ │ │ │ ├── M000003.html
│ │ │ │ │ │ └── M000004.html
│ │ │ │ │ ├── Query.html
│ │ │ │ │ ├── QueryParserError.html
│ │ │ │ │ ├── QueryParser.html
│ │ │ │ │ ├── Query.src
│ │ │ │ │ │ └── M000014.html
│ │ │ │ │ ├── RangeError.html
│ │ │ │ │ ├── Registry.html
│ │ │ │ │ ├── RSet.html
│ │ │ │ │ ├── RuntimeError.html
│ │ │ │ │ ├── SerialisationError.html
│ │ │ │ │ ├── SimpleStopper.html
│ │ │ │ │ ├── Sorter.html
│ │ │ │ │ ├── Stem.html
│ │ │ │ │ ├── StemImplementation.html
│ │ │ │ │ ├── Stopper.html
│ │ │ │ │ ├── StringValueRangeProcessor.html
│ │ │ │ │ ├── TermGenerator.html
│ │ │ │ │ ├── Term.html
│ │ │ │ │ ├── TermIterator.html
│ │ │ │ │ ├── Term.src
│ │ │ │ │ │ ├── M000001.html
│ │ │ │ │ │ └── M000002.html
│ │ │ │ │ ├── TradWeight.html
│ │ │ │ │ ├── UnimplementedError.html
│ │ │ │ │ ├── Utf8Iterator.html
│ │ │ │ │ ├── ValueCountMatchSpy.html
│ │ │ │ │ ├── ValueCountMatchSpy.src
│ │ │ │ │ │ ├── M000012.html
│ │ │ │ │ │ └── M000013.html
│ │ │ │ │ ├── Value.html
│ │ │ │ │ ├── ValueIterator.html
│ │ │ │ │ ├── ValueMapPostingSource.html
│ │ │ │ │ ├── ValuePostingSource.html
│ │ │ │ │ ├── ValueRangeProcessor.html
│ │ │ │ │ ├── ValueSetMatchDecider.html
│ │ │ │ │ ├── Value.src
│ │ │ │ │ │ ├── M000022.html
│ │ │ │ │ │ └── M000023.html
│ │ │ │ │ ├── ValueWeightPostingSource.html
│ │ │ │ │ ├── Weight.html
│ │ │ │ │ └── WritableDatabase.html
│ │ │ │ └── Xapian.html
│ │ │ ├── created.rid
│ │ │ ├── files
│ │ │ │ └── xapian_rb.html
│ │ │ ├── fr_class_index.html
│ │ │ ├── fr_file_index.html
│ │ │ ├── fr_method_index.html
│ │ │ ├── index.html
│ │ │ └── rdoc-style.css
│ │ ├── generate-rdoc-stubs
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── smoketest.rb
│ │ ├── util.i
│ │ ├── xapian.rb
│ │ ├── xapian_wrap.cc
│ │ └── xapian_wrap.h
│ ├── skiptest
│ ├── tcl8
│ │ ├── docs
│ │ │ ├── examples
│ │ │ │ ├── simpleexpand.tcl
│ │ │ │ ├── simpleindex.tcl
│ │ │ │ └── simplesearch.tcl
│ │ │ └── index.html
│ │ ├── except.i
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── pkgIndex.tcl.in
│ │ ├── run-tcl-test
│ │ ├── runtest.tcl
│ │ ├── smoketest.tcl
│ │ ├── util.i
│ │ └── xapian_wrap.cc
│ ├── TODO
│ ├── xapian-bindings.spec
│ ├── xapian-bindings.spec.in
│ ├── xapian-head.i
│ ├── xapian.i
│ └── xapian-version.h.in
├── xapian-core-1.2.22
│ ├── aclocal.m4
│ ├── api
│ │ ├── compactor.cc
│ │ ├── compactor.obj
│ │ ├── decvalwtsource.cc
│ │ ├── decvalwtsource.obj
│ │ ├── deps.d
│ │ ├── dir_contents
│ │ ├── documentvaluelist.cc
│ │ ├── documentvaluelist.h
│ │ ├── documentvaluelist.obj
│ │ ├── editdistance.cc
│ │ ├── editdistance.h
│ │ ├── editdistance.obj
│ │ ├── emptypostlist.cc
│ │ ├── emptypostlist.obj
│ │ ├── error.cc
│ │ ├── errorhandler.cc
│ │ ├── errorhandler.obj
│ │ ├── error.obj
│ │ ├── expanddecider.cc
│ │ ├── expanddecider.obj
│ │ ├── keymaker.cc
│ │ ├── keymaker.obj
│ │ ├── leafpostlist.cc
│ │ ├── leafpostlist.obj
│ │ ├── Makefile
│ │ ├── Makefile.bak
│ │ ├── Makefile.mk
│ │ ├── maptermlist.h
│ │ ├── matchspy.cc
│ │ ├── matchspy.obj
│ │ ├── omdatabase.cc
│ │ ├── omdatabase.obj
│ │ ├── omdocument.cc
│ │ ├── omdocument.obj
│ │ ├── omenquire.cc
│ │ ├── omenquire.obj
│ │ ├── ompositionlistiterator.cc
│ │ ├── ompositionlistiterator.obj
│ │ ├── ompostlistiterator.cc
│ │ ├── ompostlistiterator.obj
│ │ ├── omquery.cc
│ │ ├── omqueryinternal.cc
│ │ ├── omqueryinternal.obj
│ │ ├── omquery.obj
│ │ ├── omtermlistiterator.cc
│ │ ├── omtermlistiterator.obj
│ │ ├── postingsource.cc
│ │ ├── postingsource.obj
│ │ ├── postlist.cc
│ │ ├── postlist.obj
│ │ ├── registry.cc
│ │ ├── registry.obj
│ │ ├── replication.cc
│ │ ├── replication.obj
│ │ ├── sortable-serialise.cc
│ │ ├── sortable-serialise.obj
│ │ ├── termlist.cc
│ │ ├── termlist.obj
│ │ ├── valueiterator.cc
│ │ ├── valueiterator.obj
│ │ ├── valuerangeproc.cc
│ │ ├── valuerangeproc.obj
│ │ ├── valuesetmatchdecider.cc
│ │ ├── valuesetmatchdecider.obj
│ │ ├── vc80.pdb
│ │ ├── version.cc
│ │ └── version.obj
│ ├── AUTHORS
│ ├── backends
│ │ ├── alltermslist.cc
│ │ ├── alltermslist.obj
│ │ ├── brass
│ │ │ ├── brass_alldocspostlist.cc
│ │ │ ├── brass_alldocspostlist.h
│ │ │ ├── brass_alldocspostlist.obj
│ │ │ ├── brass_alltermslist.cc
│ │ │ ├── brass_alltermslist.h
│ │ │ ├── brass_alltermslist.obj
│ │ │ ├── brass_btreebase.cc
│ │ │ ├── brass_btreebase.h
│ │ │ ├── brass_btreebase.obj
│ │ │ ├── brass_check.cc
│ │ │ ├── brass_check.h
│ │ │ ├── brass_check.obj
│ │ │ ├── brass_compact.cc
│ │ │ ├── brass_compact.h
│ │ │ ├── brass_compact.obj
│ │ │ ├── brass_cursor.cc
│ │ │ ├── brass_cursor.h
│ │ │ ├── brass_cursor.obj
│ │ │ ├── brass_database.cc
│ │ │ ├── brass_database.h
│ │ │ ├── brass_database.obj
│ │ │ ├── brass_databasereplicator.cc
│ │ │ ├── brass_databasereplicator.h
│ │ │ ├── brass_databasereplicator.obj
│ │ │ ├── brass_dbstats.cc
│ │ │ ├── brass_dbstats.h
│ │ │ ├── brass_dbstats.obj
│ │ │ ├── brass_document.cc
│ │ │ ├── brass_document.h
│ │ │ ├── brass_document.obj
│ │ │ ├── brass_inverter.cc
│ │ │ ├── brass_inverter.h
│ │ │ ├── brass_inverter.obj
│ │ │ ├── brass_lazytable.h
│ │ │ ├── brass_metadata.cc
│ │ │ ├── brass_metadata.h
│ │ │ ├── brass_metadata.obj
│ │ │ ├── brass_positionlist.cc
│ │ │ ├── brass_positionlist.h
│ │ │ ├── brass_positionlist.obj
│ │ │ ├── brass_postlist.cc
│ │ │ ├── brass_postlist.h
│ │ │ ├── brass_postlist.obj
│ │ │ ├── brass_record.cc
│ │ │ ├── brass_record.h
│ │ │ ├── brass_record.obj
│ │ │ ├── brass_replicate_internal.h
│ │ │ ├── brass_spelling.cc
│ │ │ ├── brass_spelling.h
│ │ │ ├── brass_spelling.obj
│ │ │ ├── brass_spellingwordslist.cc
│ │ │ ├── brass_spellingwordslist.h
│ │ │ ├── brass_spellingwordslist.obj
│ │ │ ├── brass_synonym.cc
│ │ │ ├── brass_synonym.h
│ │ │ ├── brass_synonym.obj
│ │ │ ├── brass_table.cc
│ │ │ ├── brass_table.h
│ │ │ ├── brass_table.obj
│ │ │ ├── brass_termlist.cc
│ │ │ ├── brass_termlist.h
│ │ │ ├── brass_termlist.obj
│ │ │ ├── brass_termlisttable.cc
│ │ │ ├── brass_termlisttable.h
│ │ │ ├── brass_termlisttable.obj
│ │ │ ├── brass_types.h
│ │ │ ├── brass_valuelist.cc
│ │ │ ├── brass_valuelist.h
│ │ │ ├── brass_valuelist.obj
│ │ │ ├── brass_values.cc
│ │ │ ├── brass_values.h
│ │ │ ├── brass_values.obj
│ │ │ ├── brass_version.cc
│ │ │ ├── brass_version.h
│ │ │ ├── brass_version.obj
│ │ │ ├── dir_contents
│ │ │ ├── Makefile
│ │ │ ├── Makefile.mk
│ │ │ └── vc80.pdb
│ │ ├── byte_length_strings.h
│ │ ├── chert
│ │ │ ├── chert_alldocsmodifiedpostlist.cc
│ │ │ ├── chert_alldocsmodifiedpostlist.h
│ │ │ ├── chert_alldocsmodifiedpostlist.obj
│ │ │ ├── chert_alldocspostlist.cc
│ │ │ ├── chert_alldocspostlist.h
│ │ │ ├── chert_alldocspostlist.obj
│ │ │ ├── chert_alltermslist.cc
│ │ │ ├── chert_alltermslist.h
│ │ │ ├── chert_alltermslist.obj
│ │ │ ├── chert_btreebase.cc
│ │ │ ├── chert_btreebase.h
│ │ │ ├── chert_btreebase.obj
│ │ │ ├── chert_check.cc
│ │ │ ├── chert_check.h
│ │ │ ├── chert_check.obj
│ │ │ ├── chert_compact.cc
│ │ │ ├── chert_compact.h
│ │ │ ├── chert_compact.obj
│ │ │ ├── chert_cursor.cc
│ │ │ ├── chert_cursor.h
│ │ │ ├── chert_cursor.obj
│ │ │ ├── chert_database.cc
│ │ │ ├── chert_database.h
│ │ │ ├── chert_database.obj
│ │ │ ├── chert_databasereplicator.cc
│ │ │ ├── chert_databasereplicator.h
│ │ │ ├── chert_databasereplicator.obj
│ │ │ ├── chert_dbstats.cc
│ │ │ ├── chert_dbstats.h
│ │ │ ├── chert_dbstats.obj
│ │ │ ├── chert_document.cc
│ │ │ ├── chert_document.h
│ │ │ ├── chert_document.obj
│ │ │ ├── chert_lazytable.h
│ │ │ ├── chert_metadata.cc
│ │ │ ├── chert_metadata.h
│ │ │ ├── chert_metadata.obj
│ │ │ ├── chert_modifiedpostlist.cc
│ │ │ ├── chert_modifiedpostlist.h
│ │ │ ├── chert_modifiedpostlist.obj
│ │ │ ├── chert_positionlist.cc
│ │ │ ├── chert_positionlist.h
│ │ │ ├── chert_positionlist.obj
│ │ │ ├── chert_postlist.cc
│ │ │ ├── chert_postlist.h
│ │ │ ├── chert_postlist.obj
│ │ │ ├── chert_record.cc
│ │ │ ├── chert_record.h
│ │ │ ├── chert_record.obj
│ │ │ ├── chert_replicate_internal.h
│ │ │ ├── chert_spelling.cc
│ │ │ ├── chert_spelling.h
│ │ │ ├── chert_spelling.obj
│ │ │ ├── chert_spellingwordslist.cc
│ │ │ ├── chert_spellingwordslist.h
│ │ │ ├── chert_spellingwordslist.obj
│ │ │ ├── chert_synonym.cc
│ │ │ ├── chert_synonym.h
│ │ │ ├── chert_synonym.obj
│ │ │ ├── chert_table.cc
│ │ │ ├── chert_table.h
│ │ │ ├── chert_table.obj
│ │ │ ├── chert_termlist.cc
│ │ │ ├── chert_termlist.h
│ │ │ ├── chert_termlist.obj
│ │ │ ├── chert_termlisttable.cc
│ │ │ ├── chert_termlisttable.h
│ │ │ ├── chert_termlisttable.obj
│ │ │ ├── chert_types.h
│ │ │ ├── chert_valuelist.cc
│ │ │ ├── chert_valuelist.h
│ │ │ ├── chert_valuelist.obj
│ │ │ ├── chert_values.cc
│ │ │ ├── chert_values.h
│ │ │ ├── chert_values.obj
│ │ │ ├── chert_version.cc
│ │ │ ├── chert_version.h
│ │ │ ├── chert_version.obj
│ │ │ ├── dir_contents
│ │ │ ├── Makefile
│ │ │ ├── Makefile.mk
│ │ │ └── vc80.pdb
│ │ ├── contiguousalldocspostlist.cc
│ │ ├── contiguousalldocspostlist.obj
│ │ ├── database.cc
│ │ ├── database.obj
│ │ ├── databasereplicator.cc
│ │ ├── databasereplicator.obj
│ │ ├── dbfactory.cc
│ │ ├── dbfactory.obj
│ │ ├── dbfactory_remote.cc
│ │ ├── dbfactory_remote.obj
│ │ ├── deps.d
│ │ ├── dir_contents
│ │ ├── flint
│ │ │ ├── dir_contents
│ │ │ ├── flint_alldocspostlist.cc
│ │ │ ├── flint_alldocspostlist.h
│ │ │ ├── flint_alldocspostlist.obj
│ │ │ ├── flint_alltermslist.cc
│ │ │ ├── flint_alltermslist.h
│ │ │ ├── flint_alltermslist.obj
│ │ │ ├── flint_btreebase.cc
│ │ │ ├── flint_btreebase.h
│ │ │ ├── flint_btreebase.obj
│ │ │ ├── flint_check.cc
│ │ │ ├── flint_check.h
│ │ │ ├── flint_check.obj
│ │ │ ├── flint_compact.cc
│ │ │ ├── flint_compact.h
│ │ │ ├── flint_compact.obj
│ │ │ ├── flint_cursor.cc
│ │ │ ├── flint_cursor.h
│ │ │ ├── flint_cursor.obj
│ │ │ ├── flint_database.cc
│ │ │ ├── flint_database.h
│ │ │ ├── flint_database.obj
│ │ │ ├── flint_databasereplicator.cc
│ │ │ ├── flint_databasereplicator.h
│ │ │ ├── flint_databasereplicator.obj
│ │ │ ├── flint_document.cc
│ │ │ ├── flint_document.h
│ │ │ ├── flint_document.obj
│ │ │ ├── flint_metadata.cc
│ │ │ ├── flint_metadata.h
│ │ │ ├── flint_metadata.obj
│ │ │ ├── flint_modifiedpostlist.cc
│ │ │ ├── flint_modifiedpostlist.h
│ │ │ ├── flint_modifiedpostlist.obj
│ │ │ ├── flint_positionlist.cc
│ │ │ ├── flint_positionlist.h
│ │ │ ├── flint_positionlist.obj
│ │ │ ├── flint_postlist.cc
│ │ │ ├── flint_postlist.h
│ │ │ ├── flint_postlist.obj
│ │ │ ├── flint_record.cc
│ │ │ ├── flint_record.h
│ │ │ ├── flint_record.obj
│ │ │ ├── flint_replicate_internal.h
│ │ │ ├── flint_spelling.cc
│ │ │ ├── flint_spelling.h
│ │ │ ├── flint_spelling.obj
│ │ │ ├── flint_spellingwordslist.cc
│ │ │ ├── flint_spellingwordslist.h
│ │ │ ├── flint_spellingwordslist.obj
│ │ │ ├── flint_synonym.cc
│ │ │ ├── flint_synonym.h
│ │ │ ├── flint_synonym.obj
│ │ │ ├── flint_table.cc
│ │ │ ├── flint_table.h
│ │ │ ├── flint_table.obj
│ │ │ ├── flint_termlist.cc
│ │ │ ├── flint_termlist.h
│ │ │ ├── flint_termlist.obj
│ │ │ ├── flint_termlisttable.cc
│ │ │ ├── flint_termlisttable.h
│ │ │ ├── flint_termlisttable.obj
│ │ │ ├── flint_types.h
│ │ │ ├── flint_utils.h
│ │ │ ├── flint_values.cc
│ │ │ ├── flint_values.h
│ │ │ ├── flint_values.obj
│ │ │ ├── flint_version.cc
│ │ │ ├── flint_version.h
│ │ │ ├── flint_version.obj
│ │ │ ├── Makefile
│ │ │ ├── Makefile.mk
│ │ │ └── vc80.pdb
│ │ ├── flint_lock.cc
│ │ ├── flint_lock.h
│ │ ├── flint_lock.obj
│ │ ├── inmemory
│ │ │ ├── dir_contents
│ │ │ ├── inmemory_alltermslist.cc
│ │ │ ├── inmemory_alltermslist.h
│ │ │ ├── inmemory_alltermslist.obj
│ │ │ ├── inmemory_database.cc
│ │ │ ├── inmemory_database.h
│ │ │ ├── inmemory_database.obj
│ │ │ ├── inmemory_document.cc
│ │ │ ├── inmemory_document.h
│ │ │ ├── inmemory_document.obj
│ │ │ ├── inmemory_positionlist.cc
│ │ │ ├── inmemory_positionlist.obj
│ │ │ ├── Makefile
│ │ │ ├── Makefile.mk
│ │ │ └── vc80.pdb
│ │ ├── Makefile
│ │ ├── Makefile.bak
│ │ ├── Makefile.mk
│ │ ├── multi
│ │ │ ├── dir_contents
│ │ │ ├── Makefile
│ │ │ ├── Makefile.mk
│ │ │ ├── multi_alltermslist.cc
│ │ │ ├── multi_alltermslist.obj
│ │ │ ├── multi_postlist.cc
│ │ │ ├── multi_postlist.h
│ │ │ ├── multi_postlist.obj
│ │ │ ├── multi_termlist.cc
│ │ │ ├── multi_termlist.h
│ │ │ ├── multi_termlist.obj
│ │ │ ├── multi_valuelist.cc
│ │ │ ├── multi_valuelist.obj
│ │ │ └── vc80.pdb
│ │ ├── prefix_compressed_strings.h
│ │ ├── remote
│ │ │ ├── dir_contents
│ │ │ ├── Makefile
│ │ │ ├── Makefile.mk
│ │ │ ├── net_postlist.cc
│ │ │ ├── net_postlist.h
│ │ │ ├── net_postlist.obj
│ │ │ ├── net_termlist.cc
│ │ │ ├── net_termlist.h
│ │ │ ├── net_termlist.obj
│ │ │ ├── remote-database.cc
│ │ │ ├── remote-database.obj
│ │ │ ├── remote-document.cc
│ │ │ ├── remote-document.h
│ │ │ ├── remote-document.obj
│ │ │ └── vc80.pdb
│ │ ├── slowvaluelist.cc
│ │ ├── slowvaluelist.h
│ │ ├── slowvaluelist.obj
│ │ ├── valuelist.cc
│ │ ├── valuelist.obj
│ │ └── vc80.pdb
│ ├── bin
│ │ ├── deps.d
│ │ ├── dir_contents
│ │ ├── Makefile
│ │ ├── Makefile.bak
│ │ ├── Makefile.mk
│ │ ├── vc80.pdb
│ │ ├── xapian-check.1
│ │ ├── xapian-check-brass.cc
│ │ ├── xapian-check-brass.h
│ │ ├── xapian-check-brass.obj
│ │ ├── xapian-check.cc
│ │ ├── xapian-check-chert.cc
│ │ ├── xapian-check-chert.h
│ │ ├── xapian-check-chert.obj
│ │ ├── xapian-check-flint.cc
│ │ ├── xapian-check-flint.h
│ │ ├── xapian-check-flint.obj
│ │ ├── xapian-check.obj
│ │ ├── xapian-chert-update.1
│ │ ├── xapian-chert-update.cc
│ │ ├── xapian-chert-update.obj
│ │ ├── xapian-compact.1
│ │ ├── xapian-compact.cc
│ │ ├── xapian-compact.obj
│ │ ├── xapian-inspect.1
│ │ ├── xapian-inspect.cc
│ │ ├── xapian-inspect.obj
│ │ ├── xapian-progsrv.1
│ │ ├── xapian-progsrv.cc
│ │ ├── xapian-progsrv.obj
│ │ ├── xapian-replicate.1
│ │ ├── xapian-replicate.cc
│ │ ├── xapian-replicate.obj
│ │ ├── xapian-replicate-server.1
│ │ ├── xapian-replicate-server.cc
│ │ ├── xapian-replicate-server.obj
│ │ ├── xapian-tcpsrv.1
│ │ ├── xapian-tcpsrv.cc
│ │ └── xapian-tcpsrv.obj
│ ├── ChangeLog
│ ├── ChangeLog.0
│ ├── ChangeLog.examples
│ ├── cmake
│ │ ├── xapian-config.cmake.in
│ │ └── xapian-config-version.cmake.in
│ ├── common
│ │ ├── alltermslist.h
│ │ ├── append_filename_arg.h
│ │ ├── autoptr.h
│ │ ├── bitstream.cc
│ │ ├── bitstream.h
│ │ ├── bitstream.obj
│ │ ├── closefrom.cc
│ │ ├── closefrom.h
│ │ ├── closefrom.obj
│ │ ├── const_database_wrapper.cc
│ │ ├── const_database_wrapper.h
│ │ ├── const_database_wrapper.obj
│ │ ├── contiguousalldocspostlist.h
│ │ ├── database.h
│ │ ├── databasereplicator.h
│ │ ├── debuglog.cc
│ │ ├── debuglog.h
│ │ ├── debuglog.obj
│ │ ├── deps.d
│ │ ├── dir_contents
│ │ ├── document.h
│ │ ├── documentterm.h
│ │ ├── emptypostlist.h
│ │ ├── errno_to_string.cc
│ │ ├── errno_to_string.h
│ │ ├── errno_to_string.obj
│ │ ├── esetinternal.h
│ │ ├── expandweight.h
│ │ ├── fileutils.cc
│ │ ├── fileutils.h
│ │ ├── fileutils.obj
│ │ ├── getopt.cc
│ │ ├── getopt.obj
│ │ ├── gnu_getopt.h
│ │ ├── inmemory_positionlist.h
│ │ ├── internaltypes.h
│ │ ├── io_utils.cc
│ │ ├── io_utils.h
│ │ ├── io_utils.obj
│ │ ├── leafpostlist.h
│ │ ├── Makefile
│ │ ├── Makefile.bak
│ │ ├── Makefile.mk
│ │ ├── msvc_dirent.cc
│ │ ├── msvc_dirent.h
│ │ ├── msvc_dirent.obj
│ │ ├── msvc_posix_wrapper.cc
│ │ ├── msvc_posix_wrapper.h
│ │ ├── msvc_posix_wrapper.obj
│ │ ├── multialltermslist.h
│ │ ├── multimatch.h
│ │ ├── multivaluelist.h
│ │ ├── noreturn.h
│ │ ├── omassert.h
│ │ ├── omenquireinternal.h
│ │ ├── omqueryinternal.h
│ │ ├── ortermlist.h
│ │ ├── output.h
│ │ ├── pack.h
│ │ ├── positionlist.h
│ │ ├── postlist.h
│ │ ├── pretty.h
│ │ ├── progclient.h
│ │ ├── realtime.h
│ │ ├── registryinternal.h
│ │ ├── remoteconnection.h
│ │ ├── remote-database.h
│ │ ├── remoteprotocol.h
│ │ ├── remoteserver.h
│ │ ├── remotetcpclient.h
│ │ ├── remotetcpserver.h
│ │ ├── replicatetcpclient.h
│ │ ├── replicatetcpserver.h
│ │ ├── replicate_utils.cc
│ │ ├── replicate_utils.h
│ │ ├── replicate_utils.obj
│ │ ├── replication.h
│ │ ├── replicationprotocol.h
│ │ ├── safe.cc
│ │ ├── safedirent.h
│ │ ├── safeerrno.h
│ │ ├── safefcntl.h
│ │ ├── safenetdb.h
│ │ ├── safe.obj
│ │ ├── safesysselect.h
│ │ ├── safesysstat.h
│ │ ├── safesyswait.h
│ │ ├── safeunistd.h
│ │ ├── safeuuid.h
│ │ ├── safewindows.h
│ │ ├── safewinsock2.h
│ │ ├── serialise-double.cc
│ │ ├── serialise-double.h
│ │ ├── serialise-double.obj
│ │ ├── serialise.h
│ │ ├── socket_utils.cc
│ │ ├── socket_utils.h
│ │ ├── socket_utils.obj
│ │ ├── str.cc
│ │ ├── str.h
│ │ ├── stringutils.cc
│ │ ├── stringutils.h
│ │ ├── stringutils.obj
│ │ ├── str.obj
│ │ ├── submatch.h
│ │ ├── tcpclient.h
│ │ ├── tcpserver.h
│ │ ├── termlist.h
│ │ ├── unaligned.h
│ │ ├── utils.cc
│ │ ├── utils.h
│ │ ├── utils.obj
│ │ ├── valuelist.h
│ │ ├── valuestats.h
│ │ ├── vc80.pdb
│ │ ├── vectortermlist.h
│ │ ├── weightinternal.h
│ │ ├── win32_uuid.cc
│ │ ├── win32_uuid.h
│ │ └── win32_uuid.obj
│ ├── config.guess
│ ├── config.h
│ ├── config.h.in
│ ├── config.sub
│ ├── configure
│ ├── configure.ac
│ ├── COPYING
│ ├── depcomp
│ ├── dir_contents
│ ├── docs
│ │ ├── admin_notes.html
│ │ ├── admin_notes.rst
│ │ ├── apidoc
│ │ │ └── html
│ │ │ ├── annotated.html
│ │ │ ├── bc_s.png
│ │ │ ├── bdwn.png
│ │ │ ├── classes.html
│ │ │ ├── classXapian_1_1AssertionError.html
│ │ │ ├── classXapian_1_1AssertionError__inherit__graph.png
│ │ │ ├── classXapian_1_1AssertionError-members.html
│ │ │ ├── classXapian_1_1BM25Weight.html
│ │ │ ├── classXapian_1_1BM25Weight__inherit__graph.png
│ │ │ ├── classXapian_1_1BM25Weight-members.html
│ │ │ ├── classXapian_1_1BoolWeight.html
│ │ │ ├── classXapian_1_1BoolWeight__inherit__graph.png
│ │ │ ├── classXapian_1_1BoolWeight-members.html
│ │ │ ├── classXapian_1_1Compactor.html
│ │ │ ├── classXapian_1_1Compactor-members.html
│ │ │ ├── classXapian_1_1DatabaseCorruptError.html
│ │ │ ├── classXapian_1_1DatabaseCorruptError__inherit__graph.png
│ │ │ ├── classXapian_1_1DatabaseCorruptError-members.html
│ │ │ ├── classXapian_1_1DatabaseCreateError.html
│ │ │ ├── classXapian_1_1DatabaseCreateError__inherit__graph.png
│ │ │ ├── classXapian_1_1DatabaseCreateError-members.html
│ │ │ ├── classXapian_1_1DatabaseError.html
│ │ │ ├── classXapian_1_1DatabaseError__inherit__graph.png
│ │ │ ├── classXapian_1_1DatabaseError-members.html
│ │ │ ├── classXapian_1_1Database.html
│ │ │ ├── classXapian_1_1Database__inherit__graph.png
│ │ │ ├── classXapian_1_1DatabaseLockError.html
│ │ │ ├── classXapian_1_1DatabaseLockError__inherit__graph.png
│ │ │ ├── classXapian_1_1DatabaseLockError-members.html
│ │ │ ├── classXapian_1_1Database-members.html
│ │ │ ├── classXapian_1_1DatabaseModifiedError.html
│ │ │ ├── classXapian_1_1DatabaseModifiedError__inherit__graph.png
│ │ │ ├── classXapian_1_1DatabaseModifiedError-members.html
│ │ │ ├── classXapian_1_1DatabaseOpeningError.html
│ │ │ ├── classXapian_1_1DatabaseOpeningError__inherit__graph.png
│ │ │ ├── classXapian_1_1DatabaseOpeningError-members.html
│ │ │ ├── classXapian_1_1DatabaseVersionError.html
│ │ │ ├── classXapian_1_1DatabaseVersionError__inherit__graph.png
│ │ │ ├── classXapian_1_1DatabaseVersionError-members.html
│ │ │ ├── classXapian_1_1DateValueRangeProcessor.html
│ │ │ ├── classXapian_1_1DateValueRangeProcessor__inherit__graph.png
│ │ │ ├── classXapian_1_1DateValueRangeProcessor-members.html
│ │ │ ├── classXapian_1_1DecreasingValueWeightPostingSource.html
│ │ │ ├── classXapian_1_1DecreasingValueWeightPostingSource__inherit__graph.png
│ │ │ ├── classXapian_1_1DecreasingValueWeightPostingSource-members.html
│ │ │ ├── classXapian_1_1DocNotFoundError.html
│ │ │ ├── classXapian_1_1DocNotFoundError__inherit__graph.png
│ │ │ ├── classXapian_1_1DocNotFoundError-members.html
│ │ │ ├── classXapian_1_1Document.html
│ │ │ ├── classXapian_1_1Document-members.html
│ │ │ ├── classXapian_1_1Enquire.html
│ │ │ ├── classXapian_1_1Enquire-members.html
│ │ │ ├── classXapian_1_1ErrorHandler.html
│ │ │ ├── classXapian_1_1ErrorHandler-members.html
│ │ │ ├── classXapian_1_1Error.html
│ │ │ ├── classXapian_1_1Error__inherit__graph.png
│ │ │ ├── classXapian_1_1Error-members.html
│ │ │ ├── classXapian_1_1ESet.html
│ │ │ ├── classXapian_1_1ESetIterator.html
│ │ │ ├── classXapian_1_1ESetIterator-members.html
│ │ │ ├── classXapian_1_1ESet-members.html
│ │ │ ├── classXapian_1_1ExpandDeciderAnd.html
│ │ │ ├── classXapian_1_1ExpandDeciderAnd__inherit__graph.png
│ │ │ ├── classXapian_1_1ExpandDeciderAnd-members.html
│ │ │ ├── classXapian_1_1ExpandDeciderFilterTerms.html
│ │ │ ├── classXapian_1_1ExpandDeciderFilterTerms__inherit__graph.png
│ │ │ ├── classXapian_1_1ExpandDeciderFilterTerms-members.html
│ │ │ ├── classXapian_1_1ExpandDecider.html
│ │ │ ├── classXapian_1_1ExpandDecider__inherit__graph.png
│ │ │ ├── classXapian_1_1ExpandDecider-members.html
│ │ │ ├── classXapian_1_1FeatureUnavailableError.html
│ │ │ ├── classXapian_1_1FeatureUnavailableError__inherit__graph.png
│ │ │ ├── classXapian_1_1FeatureUnavailableError-members.html
│ │ │ ├── classXapian_1_1FixedWeightPostingSource.html
│ │ │ ├── classXapian_1_1FixedWeightPostingSource__inherit__graph.png
│ │ │ ├── classXapian_1_1FixedWeightPostingSource-members.html
│ │ │ ├── classXapian_1_1InternalError.html
│ │ │ ├── classXapian_1_1InternalError__inherit__graph.png
│ │ │ ├── classXapian_1_1InternalError-members.html
│ │ │ ├── classXapian_1_1InvalidArgumentError.html
│ │ │ ├── classXapian_1_1InvalidArgumentError__inherit__graph.png
│ │ │ ├── classXapian_1_1InvalidArgumentError-members.html
│ │ │ ├── classXapian_1_1InvalidOperationError.html
│ │ │ ├── classXapian_1_1InvalidOperationError__inherit__graph.png
│ │ │ ├── classXapian_1_1InvalidOperationError-members.html
│ │ │ ├── classXapian_1_1KeyMaker.html
│ │ │ ├── classXapian_1_1KeyMaker__inherit__graph.png
│ │ │ ├── classXapian_1_1KeyMaker-members.html
│ │ │ ├── classXapian_1_1LogicError.html
│ │ │ ├── classXapian_1_1LogicError__inherit__graph.png
│ │ │ ├── classXapian_1_1LogicError-members.html
│ │ │ ├── classXapian_1_1MatchDecider.html
│ │ │ ├── classXapian_1_1MatchDecider__inherit__graph.png
│ │ │ ├── classXapian_1_1MatchDecider-members.html
│ │ │ ├── classXapian_1_1MatchSpy.html
│ │ │ ├── classXapian_1_1MatchSpy__inherit__graph.png
│ │ │ ├── classXapian_1_1MatchSpy-members.html
│ │ │ ├── classXapian_1_1MSet.html
│ │ │ ├── classXapian_1_1MSetIterator.html
│ │ │ ├── classXapian_1_1MSetIterator-members.html
│ │ │ ├── classXapian_1_1MSet-members.html
│ │ │ ├── classXapian_1_1MultiValueKeyMaker.html
│ │ │ ├── classXapian_1_1MultiValueKeyMaker__inherit__graph.png
│ │ │ ├── classXapian_1_1MultiValueKeyMaker-members.html
│ │ │ ├── classXapian_1_1MultiValueSorter.html
│ │ │ ├── classXapian_1_1MultiValueSorter__inherit__graph.png
│ │ │ ├── classXapian_1_1MultiValueSorter-members.html
│ │ │ ├── classXapian_1_1NetworkError.html
│ │ │ ├── classXapian_1_1NetworkError__inherit__graph.png
│ │ │ ├── classXapian_1_1NetworkError-members.html
│ │ │ ├── classXapian_1_1NetworkTimeoutError.html
│ │ │ ├── classXapian_1_1NetworkTimeoutError__inherit__graph.png
│ │ │ ├── classXapian_1_1NetworkTimeoutError-members.html
│ │ │ ├── classXapian_1_1NumberValueRangeProcessor.html
│ │ │ ├── classXapian_1_1NumberValueRangeProcessor__inherit__graph.png
│ │ │ ├── classXapian_1_1NumberValueRangeProcessor-members.html
│ │ │ ├── classXapian_1_1PositionIterator.html
│ │ │ ├── classXapian_1_1PositionIterator-members.html
│ │ │ ├── classXapian_1_1PostingIterator.html
│ │ │ ├── classXapian_1_1PostingIterator-members.html
│ │ │ ├── classXapian_1_1PostingSource.html
│ │ │ ├── classXapian_1_1PostingSource__inherit__graph.png
│ │ │ ├── classXapian_1_1PostingSource-members.html
│ │ │ ├── classXapian_1_1Query.html
│ │ │ ├── classXapian_1_1Query-members.html
│ │ │ ├── classXapian_1_1QueryParserError.html
│ │ │ ├── classXapian_1_1QueryParserError__inherit__graph.png
│ │ │ ├── classXapian_1_1QueryParserError-members.html
│ │ │ ├── classXapian_1_1QueryParser.html
│ │ │ ├── classXapian_1_1QueryParser-members.html
│ │ │ ├── classXapian_1_1RangeError.html
│ │ │ ├── classXapian_1_1RangeError__inherit__graph.png
│ │ │ ├── classXapian_1_1RangeError-members.html
│ │ │ ├── classXapian_1_1Registry.html
│ │ │ ├── classXapian_1_1Registry-members.html
│ │ │ ├── classXapian_1_1RSet.html
│ │ │ ├── classXapian_1_1RSet-members.html
│ │ │ ├── classXapian_1_1RuntimeError.html
│ │ │ ├── classXapian_1_1RuntimeError__inherit__graph.png
│ │ │ ├── classXapian_1_1RuntimeError-members.html
│ │ │ ├── classXapian_1_1SerialisationError.html
│ │ │ ├── classXapian_1_1SerialisationError__inherit__graph.png
│ │ │ ├── classXapian_1_1SerialisationError-members.html
│ │ │ ├── classXapian_1_1SimpleStopper.html
│ │ │ ├── classXapian_1_1SimpleStopper__inherit__graph.png
│ │ │ ├── classXapian_1_1SimpleStopper-members.html
│ │ │ ├── classXapian_1_1Sorter.html
│ │ │ ├── classXapian_1_1Sorter__inherit__graph.png
│ │ │ ├── classXapian_1_1Sorter-members.html
│ │ │ ├── classXapian_1_1Stem.html
│ │ │ ├── classXapian_1_1Stem-members.html
│ │ │ ├── classXapian_1_1Stopper.html
│ │ │ ├── classXapian_1_1Stopper__inherit__graph.png
│ │ │ ├── classXapian_1_1Stopper-members.html
│ │ │ ├── classXapian_1_1StringValueRangeProcessor.html
│ │ │ ├── classXapian_1_1StringValueRangeProcessor__inherit__graph.png
│ │ │ ├── classXapian_1_1StringValueRangeProcessor-members.html
│ │ │ ├── classXapian_1_1TermGenerator.html
│ │ │ ├── classXapian_1_1TermGenerator-members.html
│ │ │ ├── classXapian_1_1TermIterator.html
│ │ │ ├── classXapian_1_1TermIterator-members.html
│ │ │ ├── classXapian_1_1TradWeight.html
│ │ │ ├── classXapian_1_1TradWeight__inherit__graph.png
│ │ │ ├── classXapian_1_1TradWeight-members.html
│ │ │ ├── classXapian_1_1UnimplementedError.html
│ │ │ ├── classXapian_1_1UnimplementedError__inherit__graph.png
│ │ │ ├── classXapian_1_1UnimplementedError-members.html
│ │ │ ├── classXapian_1_1Utf8Iterator.html
│ │ │ ├── classXapian_1_1Utf8Iterator-members.html
│ │ │ ├── classXapian_1_1ValueCountMatchSpy.html
│ │ │ ├── classXapian_1_1ValueCountMatchSpy__inherit__graph.png
│ │ │ ├── classXapian_1_1ValueCountMatchSpy-members.html
│ │ │ ├── classXapian_1_1ValueIterator.html
│ │ │ ├── classXapian_1_1ValueIterator-members.html
│ │ │ ├── classXapian_1_1ValueMapPostingSource.html
│ │ │ ├── classXapian_1_1ValueMapPostingSource__inherit__graph.png
│ │ │ ├── classXapian_1_1ValueMapPostingSource-members.html
│ │ │ ├── classXapian_1_1ValuePostingSource.html
│ │ │ ├── classXapian_1_1ValuePostingSource__inherit__graph.png
│ │ │ ├── classXapian_1_1ValuePostingSource-members.html
│ │ │ ├── classXapian_1_1ValueSetMatchDecider.html
│ │ │ ├── classXapian_1_1ValueSetMatchDecider__inherit__graph.png
│ │ │ ├── classXapian_1_1ValueSetMatchDecider-members.html
│ │ │ ├── classXapian_1_1ValueWeightPostingSource.html
│ │ │ ├── classXapian_1_1ValueWeightPostingSource__inherit__graph.png
│ │ │ ├── classXapian_1_1ValueWeightPostingSource-members.html
│ │ │ ├── classXapian_1_1Weight.html
│ │ │ ├── classXapian_1_1Weight__inherit__graph.png
│ │ │ ├── classXapian_1_1Weight-members.html
│ │ │ ├── classXapian_1_1WritableDatabase.html
│ │ │ ├── classXapian_1_1WritableDatabase__inherit__graph.png
│ │ │ ├── classXapian_1_1WritableDatabase-members.html
│ │ │ ├── closed.png
│ │ │ ├── compactor_8h.html
│ │ │ ├── database_8h.html
│ │ │ ├── dbfactory_8h.html
│ │ │ ├── deprecated.html
│ │ │ ├── dir_168225033f613bf58e19d0630bef5c8b.html
│ │ │ ├── dir_3c504f51550cb9fcc49223adf2dc9606.html
│ │ │ ├── document_8h.html
│ │ │ ├── doxygen.css
│ │ │ ├── doxygen.png
│ │ │ ├── enquire_8h.html
│ │ │ ├── error_8h.html
│ │ │ ├── errorhandler_8h.html
│ │ │ ├── expanddecider_8h.html
│ │ │ ├── files.html
│ │ │ ├── ftv2blank.png
│ │ │ ├── ftv2cl.png
│ │ │ ├── ftv2doc.png
│ │ │ ├── ftv2folderclosed.png
│ │ │ ├── ftv2folderopen.png
│ │ │ ├── ftv2lastnode.png
│ │ │ ├── ftv2link.png
│ │ │ ├── ftv2mlastnode.png
│ │ │ ├── ftv2mnode.png
│ │ │ ├── ftv2mo.png
│ │ │ ├── ftv2node.png
│ │ │ ├── ftv2ns.png
│ │ │ ├── ftv2plastnode.png
│ │ │ ├── ftv2pnode.png
│ │ │ ├── ftv2splitbar.png
│ │ │ ├── ftv2vertline.png
│ │ │ ├── functions_0x62.html
│ │ │ ├── functions_0x63.html
│ │ │ ├── functions_0x64.html
│ │ │ ├── functions_0x65.html
│ │ │ ├── functions_0x66.html
│ │ │ ├── functions_0x67.html
│ │ │ ├── functions_0x68.html
│ │ │ ├── functions_0x69.html
│ │ │ ├── functions_0x6b.html
│ │ │ ├── functions_0x6c.html
│ │ │ ├── functions_0x6d.html
│ │ │ ├── functions_0x6e.html
│ │ │ ├── functions_0x6f.html
│ │ │ ├── functions_0x70.html
│ │ │ ├── functions_0x71.html
│ │ │ ├── functions_0x72.html
│ │ │ ├── functions_0x73.html
│ │ │ ├── functions_0x74.html
│ │ │ ├── functions_0x75.html
│ │ │ ├── functions_0x76.html
│ │ │ ├── functions_0x77.html
│ │ │ ├── functions_0x7e.html
│ │ │ ├── functions_enum.html
│ │ │ ├── functions_eval.html
│ │ │ ├── functions_func_0x62.html
│ │ │ ├── functions_func_0x63.html
│ │ │ ├── functions_func_0x64.html
│ │ │ ├── functions_func_0x65.html
│ │ │ ├── functions_func_0x66.html
│ │ │ ├── functions_func_0x67.html
│ │ │ ├── functions_func_0x68.html
│ │ │ ├── functions_func_0x69.html
│ │ │ ├── functions_func_0x6b.html
│ │ │ ├── functions_func_0x6c.html
│ │ │ ├── functions_func_0x6d.html
│ │ │ ├── functions_func_0x6e.html
│ │ │ ├── functions_func_0x6f.html
│ │ │ ├── functions_func_0x70.html
│ │ │ ├── functions_func_0x71.html
│ │ │ ├── functions_func_0x72.html
│ │ │ ├── functions_func_0x73.html
│ │ │ ├── functions_func_0x74.html
│ │ │ ├── functions_func_0x75.html
│ │ │ ├── functions_func_0x76.html
│ │ │ ├── functions_func_0x77.html
│ │ │ ├── functions_func_0x7e.html
│ │ │ ├── functions_func.html
│ │ │ ├── functions.html
│ │ │ ├── functions_rela.html
│ │ │ ├── functions_type.html
│ │ │ ├── functions_vars.html
│ │ │ ├── globals_defs.html
│ │ │ ├── globals.html
│ │ │ ├── graph_legend.html
│ │ │ ├── graph_legend.png
│ │ │ ├── hierarchy.html
│ │ │ ├── index.html
│ │ │ ├── inherit_graph_0.png
│ │ │ ├── inherit_graph_10.png
│ │ │ ├── inherit_graph_11.png
│ │ │ ├── inherit_graph_12.png
│ │ │ ├── inherit_graph_13.png
│ │ │ ├── inherit_graph_14.png
│ │ │ ├── inherit_graph_15.png
│ │ │ ├── inherit_graph_16.png
│ │ │ ├── inherit_graph_17.png
│ │ │ ├── inherit_graph_18.png
│ │ │ ├── inherit_graph_19.png
│ │ │ ├── inherit_graph_1.png
│ │ │ ├── inherit_graph_20.png
│ │ │ ├── inherit_graph_21.png
│ │ │ ├── inherit_graph_22.png
│ │ │ ├── inherit_graph_23.png
│ │ │ ├── inherit_graph_24.png
│ │ │ ├── inherit_graph_25.png
│ │ │ ├── inherit_graph_26.png
│ │ │ ├── inherit_graph_27.png
│ │ │ ├── inherit_graph_28.png
│ │ │ ├── inherit_graph_29.png
│ │ │ ├── inherit_graph_2.png
│ │ │ ├── inherit_graph_3.png
│ │ │ ├── inherit_graph_4.png
│ │ │ ├── inherit_graph_5.png
│ │ │ ├── inherit_graph_6.png
│ │ │ ├── inherit_graph_7.png
│ │ │ ├── inherit_graph_8.png
│ │ │ ├── inherit_graph_9.png
│ │ │ ├── inherits.html
│ │ │ ├── keymaker_8h.html
│ │ │ ├── matchspy_8h.html
│ │ │ ├── namespacemembers_enum.html
│ │ │ ├── namespacemembers_func.html
│ │ │ ├── namespacemembers.html
│ │ │ ├── namespacemembers_type.html
│ │ │ ├── namespacemembers_vars.html
│ │ │ ├── namespaces.html
│ │ │ ├── namespaceXapian_1_1Auto.html
│ │ │ ├── namespaceXapian_1_1Brass.html
│ │ │ ├── namespaceXapian_1_1Chert.html
│ │ │ ├── namespaceXapian_1_1Flint.html
│ │ │ ├── namespaceXapian_1_1InMemory.html
│ │ │ ├── namespaceXapian_1_1Remote.html
│ │ │ ├── namespaceXapian_1_1Unicode.html
│ │ │ ├── namespaceXapian.html
│ │ │ ├── nav_f.png
│ │ │ ├── nav_g.png
│ │ │ ├── nav_h.png
│ │ │ ├── open.png
│ │ │ ├── pages.html
│ │ │ ├── positioniterator_8h.html
│ │ │ ├── postingiterator_8h.html
│ │ │ ├── postingsource_8h.html
│ │ │ ├── query_8h.html
│ │ │ ├── queryparser_8h.html
│ │ │ ├── registry_8h.html
│ │ │ ├── stem_8h.html
│ │ │ ├── structXapian_1_1StemImplementation.html
│ │ │ ├── structXapian_1_1StemImplementation-members.html
│ │ │ ├── structXapian_1_1ValueRangeProcessor.html
│ │ │ ├── structXapian_1_1ValueRangeProcessor__inherit__graph.png
│ │ │ ├── structXapian_1_1ValueRangeProcessor-members.html
│ │ │ ├── sync_off.png
│ │ │ ├── sync_on.png
│ │ │ ├── tab_a.png
│ │ │ ├── tab_b.png
│ │ │ ├── tab_h.png
│ │ │ ├── tabs.css
│ │ │ ├── tab_s.png
│ │ │ ├── termgenerator_8h.html
│ │ │ ├── termiterator_8h.html
│ │ │ ├── types_8h.html
│ │ │ ├── unicode_8h.html
│ │ │ ├── valueiterator_8h.html
│ │ │ ├── valuesetmatchdecider_8h.html
│ │ │ ├── version_8h.html
│ │ │ ├── weight_8h.html
│ │ │ └── xapian_8h.html
│ │ ├── apidoc.pdf
│ │ ├── bm25.html
│ │ ├── bm25.rst
│ │ ├── code_structure.html
│ │ ├── collapsing.html
│ │ ├── collapsing.rst
│ │ ├── deprecation.html
│ │ ├── deprecation.rst
│ │ ├── dir_contents
│ │ ├── docsource.mk
│ │ ├── doxygen_api.conf.in
│ │ ├── doxygen_api_footer.html_tmpl
│ │ ├── doxygen_api_header.html_tmpl
│ │ ├── doxygen_source.conf.in
│ │ ├── doxygen_source_footer.html_tmpl
│ │ ├── doxygen_source_header.html_tmpl
│ │ ├── facets.html
│ │ ├── facets.rst
│ │ ├── gen_codestructure_doc.in
│ │ ├── glossary.html
│ │ ├── glossary.rst
│ │ ├── index.html
│ │ ├── index.rst
│ │ ├── install.html
│ │ ├── install.rst
│ │ ├── internals.html
│ │ ├── internals.rst
│ │ ├── intro_ir.html
│ │ ├── intro_ir.rst
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── matcherdesign.html
│ │ ├── matcherdesign.rst
│ │ ├── overview.html
│ │ ├── overview.rst
│ │ ├── postingsource.html
│ │ ├── postingsource.rst
│ │ ├── queryparser.html
│ │ ├── queryparser.rst
│ │ ├── remote.html
│ │ ├── remote_protocol.html
│ │ ├── remote_protocol.rst
│ │ ├── remote.rst
│ │ ├── replication.html
│ │ ├── replication_protocol.html
│ │ ├── replication_protocol.rst
│ │ ├── replication.rst
│ │ ├── scalability.html
│ │ ├── scalability.rst
│ │ ├── serialisation.html
│ │ ├── serialisation.rst
│ │ ├── sorting.html
│ │ ├── sorting.rst
│ │ ├── spelling.html
│ │ ├── spelling.rst
│ │ ├── stemming.html
│ │ ├── stemming.rst
│ │ ├── synonyms.html
│ │ ├── synonyms.rst
│ │ ├── termgenerator.html
│ │ ├── termgenerator.rst
│ │ ├── tests.html
│ │ ├── tests.rst
│ │ ├── valueranges.html
│ │ └── valueranges.rst
│ ├── docsource.mk
│ ├── examples
│ │ ├── copydatabase.1
│ │ ├── copydatabase.cc
│ │ ├── copydatabase.obj
│ │ ├── delve.1
│ │ ├── delve.cc
│ │ ├── delve.obj
│ │ ├── deps.d
│ │ ├── dir_contents
│ │ ├── Makefile
│ │ ├── Makefile.bak
│ │ ├── Makefile.mk
│ │ ├── quest.1
│ │ ├── quest.cc
│ │ ├── quest.obj
│ │ ├── simpleexpand.cc
│ │ ├── simpleexpand.obj
│ │ ├── simpleindex.cc
│ │ ├── simpleindex.obj
│ │ ├── simplesearch.cc
│ │ ├── simplesearch.obj
│ │ ├── vc80.pdb
│ │ ├── xapian-metadata.1
│ │ └── xapian-metadata.cc
│ ├── exception_data.pm
│ ├── expand
│ │ ├── deps.d
│ │ ├── dir_contents
│ │ ├── esetinternal.cc
│ │ ├── esetinternal.obj
│ │ ├── expandweight.cc
│ │ ├── expandweight.obj
│ │ ├── Makefile
│ │ ├── Makefile.bak
│ │ ├── Makefile.mk
│ │ ├── ortermlist.cc
│ │ ├── ortermlist.obj
│ │ └── vc80.pdb
│ ├── generate-exceptions
│ ├── HACKING
│ ├── include
│ │ ├── dir_contents
│ │ ├── Makefile
│ │ ├── Makefile.mk
│ │ ├── xapian
│ │ │ ├── base.h
│ │ │ ├── compactor.h
│ │ │ ├── database.h
│ │ │ ├── dbfactory.h
│ │ │ ├── deprecated.h
│ │ │ ├── derefwrapper.h
│ │ │ ├── dir_contents
│ │ │ ├── document.h
│ │ │ ├── enquire.h
│ │ │ ├── errordispatch.h
│ │ │ ├── error.h
│ │ │ ├── errorhandler.h
│ │ │ ├── expanddecider.h
│ │ │ ├── keymaker.h
│ │ │ ├── Makefile
│ │ │ ├── matchspy.h
│ │ │ ├── positioniterator.h
│ │ │ ├── postingiterator.h
│ │ │ ├── postingsource.h
│ │ │ ├── query.h
│ │ │ ├── queryparser.h
│ │ │ ├── registry.h
│ │ │ ├── stem.h
│ │ │ ├── termgenerator.h
│ │ │ ├── termiterator.h
│ │ │ ├── types.h
│ │ │ ├── unicode.h
│ │ │ ├── valueiterator.h
│ │ │ ├── valuesetmatchdecider.h
│ │ │ ├── version.h
│ │ │ ├── version_h.cc
│ │ │ ├── visibility.h
│ │ │ └── weight.h
│ │ └── xapian.h
│ ├── INSTALL
│ ├── install-sh
│ ├── languages
│ │ ├── allsnowballheaders.h
│ │ ├── compiler
│ │ │ ├── analyser.c
│ │ │ ├── analyser.obj
│ │ │ ├── driver.c
│ │ │ ├── driver.obj
│ │ │ ├── generator.c
│ │ │ ├── generator.obj
│ │ │ ├── header.h
│ │ │ ├── Makefile
│ │ │ ├── snowball.exe
│ │ │ ├── snowball.exe.manifest
│ │ │ ├── snowball.ilk
│ │ │ ├── snowball.pdb
│ │ │ ├── space.c
│ │ │ ├── space.obj
│ │ │ ├── syswords2.h
│ │ │ ├── syswords.h
│ │ │ ├── tokeniser.c
│ │ │ ├── tokeniser.obj
│ │ │ └── vc80.pdb
│ │ ├── danish.cc
│ │ ├── danish.h
│ │ ├── danish.obj
│ │ ├── danish.sbl
│ │ ├── dir_contents
│ │ ├── dutch.cc
│ │ ├── dutch.h
│ │ ├── dutch.obj
│ │ ├── dutch.sbl
│ │ ├── english.cc
│ │ ├── english.h
│ │ ├── english.obj
│ │ ├── english.sbl
│ │ ├── finnish.cc
│ │ ├── finnish.h
│ │ ├── finnish.obj
│ │ ├── finnish.sbl
│ │ ├── french.cc
│ │ ├── french.h
│ │ ├── french.obj
│ │ ├── french.sbl
│ │ ├── generate-allsnowballheaders
│ │ ├── generate-allsnowballheaders.in
│ │ ├── german2.cc
│ │ ├── german2.h
│ │ ├── german2.obj
│ │ ├── german2.sbl
│ │ ├── german.cc
│ │ ├── german.h
│ │ ├── german.obj
│ │ ├── german.sbl
│ │ ├── hungarian.cc
│ │ ├── hungarian.h
│ │ ├── hungarian.obj
│ │ ├── hungarian.sbl
│ │ ├── italian.cc
│ │ ├── italian.h
│ │ ├── italian.obj
│ │ ├── italian.sbl
│ │ ├── kraaij_pohlmann.cc
│ │ ├── kraaij_pohlmann.h
│ │ ├── kraaij_pohlmann.obj
│ │ ├── kraaij_pohlmann.sbl
│ │ ├── lovins.cc
│ │ ├── lovins.h
│ │ ├── lovins.obj
│ │ ├── lovins.sbl
│ │ ├── Makefile
│ │ ├── Makefile.mk
│ │ ├── norwegian.cc
│ │ ├── norwegian.h
│ │ ├── norwegian.obj
│ │ ├── norwegian.sbl
│ │ ├── porter.cc
│ │ ├── porter.h
│ │ ├── porter.obj
│ │ ├── porter.sbl
│ │ ├── portuguese.cc
│ │ ├── portuguese.h
│ │ ├── portuguese.obj
│ │ ├── portuguese.sbl
│ │ ├── romanian.cc
│ │ ├── romanian.h
│ │ ├── romanian.obj
│ │ ├── romanian.sbl
│ │ ├── russian.cc
│ │ ├── russian.h
│ │ ├── russian.obj
│ │ ├── russian.sbl
│ │ ├── spanish.cc
│ │ ├── spanish.h
│ │ ├── spanish.obj
│ │ ├── spanish.sbl
│ │ ├── stem.cc
│ │ ├── steminternal.cc
│ │ ├── steminternal.h
│ │ ├── steminternal.obj
│ │ ├── stem.obj
│ │ ├── swedish.cc
│ │ ├── swedish.h
│ │ ├── swedish.obj
│ │ ├── swedish.sbl
│ │ ├── turkish.cc
│ │ ├── turkish.h
│ │ ├── turkish.obj
│ │ ├── turkish.sbl
│ │ └── vc80.pdb
│ ├── ltmain.sh
│ ├── m4
│ │ ├── libtool.m4
│ │ ├── lt~obsolete.m4
│ │ ├── ltoptions.m4
│ │ ├── ltsugar.m4
│ │ ├── ltversion.m4
│ │ └── type_socklen_t.m4
│ ├── m4-macros
│ │ └── xapian.m4
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── makemanpage.in
│ ├── matcher
│ │ ├── andmaybepostlist.cc
│ │ ├── andmaybepostlist.h
│ │ ├── andmaybepostlist.obj
│ │ ├── andnotpostlist.cc
│ │ ├── andnotpostlist.h
│ │ ├── andnotpostlist.obj
│ │ ├── branchpostlist.cc
│ │ ├── branchpostlist.h
│ │ ├── branchpostlist.obj
│ │ ├── collapser.cc
│ │ ├── collapser.h
│ │ ├── collapser.obj
│ │ ├── deps.d
│ │ ├── dir_contents
│ │ ├── exactphrasepostlist.cc
│ │ ├── exactphrasepostlist.h
│ │ ├── exactphrasepostlist.obj
│ │ ├── externalpostlist.cc
│ │ ├── externalpostlist.h
│ │ ├── externalpostlist.obj
│ │ ├── extraweightpostlist.h
│ │ ├── localsubmatch.cc
│ │ ├── localsubmatch.h
│ │ ├── localsubmatch.obj
│ │ ├── Makefile
│ │ ├── Makefile.bak
│ │ ├── Makefile.mk
│ │ ├── mergepostlist.cc
│ │ ├── mergepostlist.h
│ │ ├── mergepostlist.obj
│ │ ├── msetcmp.cc
│ │ ├── msetcmp.h
│ │ ├── msetcmp.obj
│ │ ├── msetpostlist.cc
│ │ ├── msetpostlist.h
│ │ ├── msetpostlist.obj
│ │ ├── multiandpostlist.cc
│ │ ├── multiandpostlist.h
│ │ ├── multiandpostlist.obj
│ │ ├── multimatch.cc
│ │ ├── multimatch.obj
│ │ ├── multixorpostlist.cc
│ │ ├── multixorpostlist.h
│ │ ├── multixorpostlist.obj
│ │ ├── nearpostlist.cc
│ │ ├── nearpostlist.h
│ │ ├── nearpostlist.obj
│ │ ├── orpostlist.cc
│ │ ├── orpostlist.h
│ │ ├── orpostlist.obj
│ │ ├── phrasepostlist.cc
│ │ ├── phrasepostlist.h
│ │ ├── phrasepostlist.obj
│ │ ├── queryoptimiser.cc
│ │ ├── queryoptimiser.h
│ │ ├── queryoptimiser.obj
│ │ ├── remotesubmatch.cc
│ │ ├── remotesubmatch.h
│ │ ├── remotesubmatch.obj
│ │ ├── selectpostlist.cc
│ │ ├── selectpostlist.h
│ │ ├── selectpostlist.obj
│ │ ├── synonympostlist.cc
│ │ ├── synonympostlist.h
│ │ ├── synonympostlist.obj
│ │ ├── valuegepostlist.cc
│ │ ├── valuegepostlist.h
│ │ ├── valuegepostlist.obj
│ │ ├── valuerangepostlist.cc
│ │ ├── valuerangepostlist.h
│ │ ├── valuerangepostlist.obj
│ │ ├── valuestreamdocument.cc
│ │ ├── valuestreamdocument.h
│ │ ├── valuestreamdocument.obj
│ │ └── vc80.pdb
│ ├── missing
│ ├── net
│ │ ├── deps.d
│ │ ├── dir_contents
│ │ ├── length.cc
│ │ ├── length.h
│ │ ├── length.obj
│ │ ├── Makefile
│ │ ├── Makefile.bak
│ │ ├── Makefile.mk
│ │ ├── progclient.cc
│ │ ├── progclient.obj
│ │ ├── remoteconnection.cc
│ │ ├── remoteconnection.obj
│ │ ├── remoteserver.cc
│ │ ├── remoteserver.obj
│ │ ├── remotetcpclient.cc
│ │ ├── remotetcpclient.obj
│ │ ├── remotetcpserver.cc
│ │ ├── remotetcpserver.obj
│ │ ├── replicatetcpclient.cc
│ │ ├── replicatetcpclient.obj
│ │ ├── replicatetcpserver.cc
│ │ ├── replicatetcpserver.obj
│ │ ├── serialise.cc
│ │ ├── serialise.obj
│ │ ├── tcpclient.cc
│ │ ├── tcpclient.obj
│ │ ├── tcpserver.cc
│ │ ├── tcpserver.obj
│ │ └── vc80.pdb
│ ├── NEWS
│ ├── pkgconfig
│ │ └── xapian-core.pc.in
│ ├── PLATFORMS
│ ├── preautoreconf
│ ├── queryparser
│ │ ├── cjk-tokenizer.cc
│ │ ├── cjk-tokenizer.h
│ │ ├── cjk-tokenizer.obj
│ │ ├── deps.d
│ │ ├── dir_contents
│ │ ├── lemon.c
│ │ ├── lemon.exe
│ │ ├── lemon.exe.manifest
│ │ ├── lemon.ilk
│ │ ├── lemon.obj
│ │ ├── lemon.pdb
│ │ ├── Makefile
│ │ ├── Makefile.bak
│ │ ├── Makefile.mk
│ │ ├── queryparser.cc
│ │ ├── queryparser_internal.cc
│ │ ├── queryparser_internal.h
│ │ ├── queryparser_internal.obj
│ │ ├── queryparser.lemony
│ │ ├── queryparser.lt
│ │ ├── queryparser.obj
│ │ ├── queryparser_token.h
│ │ ├── termgenerator.cc
│ │ ├── termgenerator_internal.cc
│ │ ├── termgenerator_internal.h
│ │ ├── termgenerator_internal.obj
│ │ ├── termgenerator.obj
│ │ └── vc80.pdb
│ ├── README
│ ├── tests
│ │ ├── api_all.h
│ │ ├── api_anydb.cc
│ │ ├── api_anydb.h
│ │ ├── api_backend.cc
│ │ ├── api_backend.h
│ │ ├── api_closedb.cc
│ │ ├── api_closedb.h
│ │ ├── api_collapse.cc
│ │ ├── api_collapse.h
│ │ ├── api_collated.h
│ │ ├── api_compact.cc
│ │ ├── api_compact.h
│ │ ├── api_db.cc
│ │ ├── api_db.h
│ │ ├── api_generated.cc
│ │ ├── api_generated.h
│ │ ├── api_matchspy.cc
│ │ ├── api_matchspy.h
│ │ ├── api_metadata.cc
│ │ ├── api_metadata.h
│ │ ├── api_nodb.cc
│ │ ├── api_nodb.h
│ │ ├── api_none.cc
│ │ ├── api_none.h
│ │ ├── api_opsynonym.cc
│ │ ├── api_opsynonym.h
│ │ ├── api_opvalue.cc
│ │ ├── api_opvalue.h
│ │ ├── api_percentages.cc
│ │ ├── api_percentages.h
│ │ ├── api_posdb.cc
│ │ ├── api_posdb.h
│ │ ├── api_postingsource.cc
│ │ ├── api_postingsource.h
│ │ ├── api_qpbackend.cc
│ │ ├── api_qpbackend.h
│ │ ├── api_query.cc
│ │ ├── api_query.h
│ │ ├── api_replacedoc.cc
│ │ ├── api_replacedoc.h
│ │ ├── api_replicate.cc
│ │ ├── api_replicate.h
│ │ ├── api_scalability.cc
│ │ ├── api_scalability.h
│ │ ├── api_serialise.cc
│ │ ├── api_serialise.h
│ │ ├── api_sorting.cc
│ │ ├── api_sorting.h
│ │ ├── api_sortingold.cc
│ │ ├── api_sortingold.h
│ │ ├── api_spelling.cc
│ │ ├── api_spelling.h
│ │ ├── api_stem.cc
│ │ ├── api_stem.h
│ │ ├── apitest.cc
│ │ ├── apitest.exe
│ │ ├── apitest.exe.manifest
│ │ ├── apitest.h
│ │ ├── api_transdb.cc
│ │ ├── api_transdb.h
│ │ ├── api_unicode.cc
│ │ ├── api_unicode.h
│ │ ├── api_valuestats.cc
│ │ ├── api_valuestats.h
│ │ ├── api_valuestream.cc
│ │ ├── api_valuestream.h
│ │ ├── api_weight.cc
│ │ ├── api_weight.h
│ │ ├── api_wrdb.cc
│ │ ├── api_wrdb.h
│ │ ├── collate-test
│ │ ├── dbcheck.cc
│ │ ├── dbcheck.h
│ │ ├── deps.d
│ │ ├── dir_contents
│ │ ├── generate-api_generated
│ │ ├── harness
│ │ │ ├── backendmanager_brass.cc
│ │ │ ├── backendmanager_brass.h
│ │ │ ├── backendmanager_brass.obj
│ │ │ ├── backendmanager.cc
│ │ │ ├── backendmanager_chert.cc
│ │ │ ├── backendmanager_chert.h
│ │ │ ├── backendmanager_chert.obj
│ │ │ ├── backendmanager_flint.cc
│ │ │ ├── backendmanager_flint.h
│ │ │ ├── backendmanager_flint.obj
│ │ │ ├── backendmanager.h
│ │ │ ├── backendmanager_inmemory.cc
│ │ │ ├── backendmanager_inmemory.h
│ │ │ ├── backendmanager_inmemory.obj
│ │ │ ├── backendmanager_local.h
│ │ │ ├── backendmanager_multi.cc
│ │ │ ├── backendmanager_multi.h
│ │ │ ├── backendmanager_multi.obj
│ │ │ ├── backendmanager.obj
│ │ │ ├── backendmanager_remote.cc
│ │ │ ├── backendmanager_remote.h
│ │ │ ├── backendmanager_remote.obj
│ │ │ ├── backendmanager_remoteprog.cc
│ │ │ ├── backendmanager_remoteprog.h
│ │ │ ├── backendmanager_remoteprog.obj
│ │ │ ├── backendmanager_remotetcp.cc
│ │ │ ├── backendmanager_remotetcp.h
│ │ │ ├── backendmanager_remotetcp.obj
│ │ │ ├── cputimer.cc
│ │ │ ├── cputimer.h
│ │ │ ├── cputimer.obj
│ │ │ ├── deps.d
│ │ │ ├── dir_contents
│ │ │ ├── fdtracker.cc
│ │ │ ├── fdtracker.h
│ │ │ ├── fdtracker.obj
│ │ │ ├── index_utils.cc
│ │ │ ├── index_utils.h
│ │ │ ├── index_utils.obj
│ │ │ ├── Makefile
│ │ │ ├── Makefile.bak
│ │ │ ├── Makefile.mk
│ │ │ ├── scalability.cc
│ │ │ ├── scalability.h
│ │ │ ├── scalability.obj
│ │ │ ├── testmacros.h
│ │ │ ├── testrunner.cc
│ │ │ ├── testrunner.h
│ │ │ ├── testrunner.obj
│ │ │ ├── testsuite.cc
│ │ │ ├── testsuite.h
│ │ │ ├── testsuite.obj
│ │ │ ├── testutils.cc
│ │ │ ├── testutils.h
│ │ │ ├── testutils.obj
│ │ │ ├── unixcmds.cc
│ │ │ ├── unixcmds.h
│ │ │ ├── unixcmds.obj
│ │ │ └── vc80.pdb
│ │ ├── internaltest.cc
│ │ ├── internaltest.exe
│ │ ├── internaltest.exe.manifest
│ │ ├── Makefile
│ │ ├── Makefile.am
│ │ ├── Makefile.bak
│ │ ├── Makefile.in
│ │ ├── perftest
│ │ │ ├── dir_contents
│ │ │ ├── freemem.cc
│ │ │ ├── freemem.h
│ │ │ ├── get_machine_info.in
│ │ │ ├── Makefile.mk
│ │ │ ├── perftest_all.h
│ │ │ ├── perftest.cc
│ │ │ ├── perftest_collated.h
│ │ │ ├── perftest.h
│ │ │ ├── perftest_matchdecider.cc
│ │ │ ├── perftest_matchdecider.h
│ │ │ ├── perftest_randomidx.cc
│ │ │ ├── perftest_randomidx.h
│ │ │ ├── runprocess.cc
│ │ │ └── runprocess.h
│ │ ├── queryparsertest.cc
│ │ ├── queryparsertest.exe
│ │ ├── queryparsertest.exe.manifest
│ │ ├── runsrv.in
│ │ ├── runtest.in
│ │ ├── soaktest
│ │ │ ├── dir_contents
│ │ │ ├── Makefile.mk
│ │ │ ├── soaktest_all.h
│ │ │ ├── soaktest.cc
│ │ │ ├── soaktest_collated.h
│ │ │ ├── soaktest.h
│ │ │ ├── soaktest_queries.cc
│ │ │ └── soaktest_queries.h
│ │ ├── stemtest.cc
│ │ ├── stemtest.exe
│ │ ├── stemtest.exe.manifest
│ │ ├── submitperftest.in
│ │ ├── termgentest.cc
│ │ ├── termgentest.exe
│ │ ├── termgentest.exe.manifest
│ │ ├── testdata
│ │ │ ├── apitest_allterms2.txt
│ │ │ ├── apitest_allterms4.txt
│ │ │ ├── apitest_allterms.txt
│ │ │ ├── apitest_declen.txt
│ │ │ ├── apitest_manydocs.txt
│ │ │ ├── apitest_onedoc.txt
│ │ │ ├── apitest_phrase.txt
│ │ │ ├── apitest_poslist.txt
│ │ │ ├── apitest_punc.txt
│ │ │ ├── apitest_rset.txt
│ │ │ ├── apitest_simpledata2.txt
│ │ │ ├── apitest_simpledata.txt
│ │ │ ├── apitest_sortconsist.txt
│ │ │ ├── apitest_sortrel.txt
│ │ │ ├── apitest_space.txt
│ │ │ ├── apitest_termorder.txt
│ │ │ ├── etext.txt
│ │ │ ├── flint-0.9.9
│ │ │ │ ├── flicklock
│ │ │ │ ├── iamflint
│ │ │ │ ├── position.baseA
│ │ │ │ ├── position.DB
│ │ │ │ ├── postlist.baseA
│ │ │ │ ├── postlist.DB
│ │ │ │ ├── record.baseA
│ │ │ │ ├── record.DB
│ │ │ │ ├── termlist.baseA
│ │ │ │ ├── termlist.DB
│ │ │ │ ├── value.baseA
│ │ │ │ └── value.DB
│ │ │ ├── flint-1.0.1
│ │ │ │ ├── flintlock
│ │ │ │ ├── iamflint
│ │ │ │ ├── position.baseA
│ │ │ │ ├── position.DB
│ │ │ │ ├── postlist.baseA
│ │ │ │ ├── postlist.DB
│ │ │ │ ├── record.baseA
│ │ │ │ ├── record.DB
│ │ │ │ ├── termlist.baseA
│ │ │ │ ├── termlist.DB
│ │ │ │ ├── value.baseA
│ │ │ │ └── value.DB
│ │ │ └── flint-1.0.2
│ │ │ ├── flintlock
│ │ │ ├── iamflint
│ │ │ ├── postlist.baseA
│ │ │ ├── postlist.DB
│ │ │ ├── record.baseA
│ │ │ ├── record.DB
│ │ │ ├── termlist.baseA
│ │ │ └── termlist.DB
│ │ ├── unittest.cc
│ │ ├── unittest.exe
│ │ ├── unittest.exe.manifest
│ │ ├── valgrind.supp
│ │ └── zlib-vg.c
│ ├── unicode
│ │ ├── deps.d
│ │ ├── dir_contents
│ │ ├── Makefile
│ │ ├── Makefile.bak
│ │ ├── Makefile.mk
│ │ ├── unicode-data.cc
│ │ ├── unicode-data.obj
│ │ ├── UnicodeData-README.txt
│ │ ├── UnicodeData.txt
│ │ ├── uniParse.tcl
│ │ ├── utf8itor.cc
│ │ ├── utf8itor.obj
│ │ └── vc80.pdb
│ ├── weight
│ │ ├── bm25weight.cc
│ │ ├── bm25weight.obj
│ │ ├── boolweight.cc
│ │ ├── boolweight.obj
│ │ ├── deps.d
│ │ ├── Makefile
│ │ ├── Makefile.bak
│ │ ├── Makefile.mk
│ │ ├── tradweight.cc
│ │ ├── tradweight.obj
│ │ ├── vc80.pdb
│ │ ├── weight.cc
│ │ ├── weightinternal.cc
│ │ ├── weightinternal.obj
│ │ └── weight.obj
│ ├── win32
│ │ ├── ChangeLog
│ │ ├── config.h.omega.win32
│ │ ├── config.h.win32
│ │ ├── config.mak
│ │ ├── doccomments.i
│ │ ├── genversion.pl
│ │ ├── makebinaries.py
│ │ ├── Makefile
│ │ ├── NEWS
│ │ ├── README
│ │ ├── setup.py
│ │ ├── version.h.in
│ │ ├── version.rc.csharp
│ │ ├── version.rc.java-swig
│ │ ├── version.rc.python
│ │ ├── win32_api.mak
│ │ ├── win32_applications_omega.mak
│ │ ├── win32_backends_brass.mak
│ │ ├── win32_backends_chert.mak
│ │ ├── win32_backends_flint.mak
│ │ ├── win32_backends_inmemory.mak
│ │ ├── win32_backends.mak
│ │ ├── win32_backends_multi.mak
│ │ ├── win32_backends_muscat36.mak
│ │ ├── win32_backends_quartz.mak
│ │ ├── win32_backends_remote.mak
│ │ ├── win32_bindings_csharp.mak
│ │ ├── win32_bindings_java-swig.mak
│ │ ├── win32_bindings_php.mak
│ │ ├── win32_bindings_python.mak
│ │ ├── win32_bindings_ruby.mak
│ │ ├── win32_bin.mak
│ │ ├── win32_common.mak
│ │ ├── win32_examples.mak
│ │ ├── win32_expand.mak
│ │ ├── win32_getopt.mak
│ │ ├── win32_languages_compiler.mak
│ │ ├── win32_languages.mak
│ │ ├── win32_matcher.mak
│ │ ├── win32_net.mak
│ │ ├── win32_perftest.mak
│ │ ├── win32_queryparser.mak
│ │ ├── win32_tests.mak
│ │ ├── win32_testsuite.mak
│ │ ├── win32_unicode.mak
│ │ ├── win32_weight.mak
│ │ ├── WriteJavaVersion.java
│ │ ├── xapdep
│ │ │ ├── README
│ │ │ ├── vc80.idb
│ │ │ ├── xapdep.c
│ │ │ ├── xapdep.exe
│ │ │ ├── xapdep.mak
│ │ │ └── xapdep.obj
│ │ └── xapdep.exe
│ ├── xapian-config.1
│ ├── xapian-config.in
│ ├── xapian-core.spec
│ └── xapian-core.spec.in
├── xapian-omega-1.2.22
│ ├── aclocal.m4
│ ├── atomparse.cc
│ ├── atomparse.h
│ ├── atomparsetest.cc
│ ├── AUTHORS
│ ├── cdb_find.cc
│ ├── cdb.h
│ ├── cdb_hash.cc
│ ├── cdb_init.cc
│ ├── cdb_int.h
│ ├── cdb_unpack.cc
│ ├── cgiparam.cc
│ ├── cgiparam.h
│ ├── ChangeLog
│ ├── common
│ │ ├── append_filename_arg.h
│ │ ├── getopt.cc
│ │ ├── gnu_getopt.h
│ │ ├── msvc_dirent.cc
│ │ ├── msvc_dirent.h
│ │ ├── noreturn.h
│ │ ├── omassert.h
│ │ ├── realtime.h
│ │ ├── safe.cc
│ │ ├── safedirent.h
│ │ ├── safeerrno.h
│ │ ├── safefcntl.h
│ │ ├── safesysselect.h
│ │ ├── safesysstat.h
│ │ ├── safesyswait.h
│ │ ├── safeunistd.h
│ │ ├── safewindows.h
│ │ ├── safewinsock2.h
│ │ ├── str.cc
│ │ ├── str.h
│ │ ├── stringutils.cc
│ │ └── stringutils.h
│ ├── commonhelp.cc
│ ├── commonhelp.h
│ ├── configfile.cc
│ ├── configfile.h
│ ├── config.guess
│ ├── config.h.in
│ ├── config.sub
│ ├── configure
│ ├── configure.ac
│ ├── COPYING
│ ├── date.cc
│ ├── date.h
│ ├── datematchdecider.cc
│ ├── datematchdecider.h
│ ├── dbi2omega
│ ├── depcomp
│ ├── diritor.cc
│ ├── diritor.h
│ ├── docs
│ │ ├── cgiparams.html
│ │ ├── cgiparams.rst
│ │ ├── encodings.html
│ │ ├── encodings.rst
│ │ ├── index.html
│ │ ├── index.rst
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── omegascript.html
│ │ ├── omegascript.rst
│ │ ├── overview.html
│ │ ├── overview.rst
│ │ ├── quickstart.html
│ │ ├── quickstart.rst
│ │ ├── scriptindex.html
│ │ ├── scriptindex.rst
│ │ ├── termprefixes.html
│ │ └── termprefixes.rst
│ ├── expand.cc
│ ├── expand.h
│ ├── extra
│ │ ├── omegascript.vim
│ │ └── omegascript.vim.in
│ ├── freemem.cc
│ ├── freemem.h
│ ├── gen-omegascript-vim
│ ├── hashterm.cc
│ ├── hashterm.h
│ ├── htdig2omega
│ ├── htdig2omega.script
│ ├── htmlparse.cc
│ ├── htmlparse.h
│ ├── htmlparsetest.cc
│ ├── images
│ │ ├── nextoff.png
│ │ ├── next.png
│ │ ├── page-10.png
│ │ ├── page-10s.png
│ │ ├── page-11.png
│ │ ├── page-11s.png
│ │ ├── page-1.png
│ │ ├── page-1s.png
│ │ ├── page-2.png
│ │ ├── page-2s.png
│ │ ├── page-3.png
│ │ ├── page-3s.png
│ │ ├── page-4.png
│ │ ├── page-4s.png
│ │ ├── page-5.png
│ │ ├── page-5s.png
│ │ ├── page-6.png
│ │ ├── page-6s.png
│ │ ├── page-7.png
│ │ ├── page-7s.png
│ │ ├── page-8.png
│ │ ├── page-8s.png
│ │ ├── page-9.png
│ │ ├── page-9s.png
│ │ ├── previous.png
│ │ ├── prevoff.png
│ │ ├── score-0.png
│ │ ├── score-10.png
│ │ ├── score-1.png
│ │ ├── score-2.png
│ │ ├── score-3.png
│ │ ├── score-4.png
│ │ ├── score-5.png
│ │ ├── score-6.png
│ │ ├── score-7.png
│ │ ├── score-8.png
│ │ └── score-9.png
│ ├── INSTALL
│ ├── install-sh
│ ├── loadfile.cc
│ ├── loadfile.h
│ ├── ltmain.sh
│ ├── m4
│ │ ├── libtool.m4
│ │ ├── lt~obsolete.m4
│ │ ├── ltoptions.m4
│ │ ├── ltsugar.m4
│ │ └── ltversion.m4
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── makemanpage.in
│ ├── mbox2omega
│ ├── mbox2omega.script
│ ├── md5.cc
│ ├── md5.h
│ ├── md5test.cc
│ ├── md5wrap.cc
│ ├── md5wrap.h
│ ├── metaxmlparse.cc
│ ├── metaxmlparse.h
│ ├── missing
│ ├── myhtmlparse.cc
│ ├── myhtmlparse.h
│ ├── namedentities.h
│ ├── NEWS
│ ├── omega.cc
│ ├── omega.conf
│ ├── omega.h
│ ├── omindex.1
│ ├── omindex.cc
│ ├── opendocparse.cc
│ ├── opendocparse.h
│ ├── outlookmsg2html
│ ├── outlookmsg2html.in
│ ├── pkglibbindir.cc
│ ├── pkglibbindir.h
│ ├── portability
│ │ ├── mkdtemp.cc
│ │ └── mkdtemp.h
│ ├── query.cc
│ ├── query.h
│ ├── README
│ ├── runfilter.cc
│ ├── runfilter.h
│ ├── sample.cc
│ ├── sample.h
│ ├── scriptindex.1
│ ├── scriptindex.cc
│ ├── strcasecmp.h
│ ├── svgparse.cc
│ ├── svgparse.h
│ ├── templates
│ │ ├── godmode
│ │ ├── inc
│ │ │ ├── anyalldropbox
│ │ │ ├── anyallradio
│ │ │ └── toptermsjs
│ │ ├── opensearch
│ │ ├── query
│ │ ├── topterms
│ │ └── xml
│ ├── TODO
│ ├── transform.cc
│ ├── transform.h
│ ├── unixperm.h
│ ├── urldecode.h
│ ├── urlencode.cc
│ ├── urlencode.h
│ ├── urlenctest.cc
│ ├── utf8convert.cc
│ ├── utf8convert.h
│ ├── utf8converttest.cc
│ ├── utf8truncate.cc
│ ├── utf8truncate.h
│ ├── utils.cc
│ ├── utils.h
│ ├── values.h
│ ├── weight.cc
│ ├── weight.h
│ ├── xapian-omega.spec
│ ├── xapian-omega.spec.in
│ ├── xlsxparse.cc
│ ├── xlsxparse.h
│ ├── xmlparse.cc
│ ├── xmlparse.h
│ ├── xpsxmlparse.cc
│ └── xpsxmlparse.h
└── xapian windows环境VS2005编译.doc
106 directories, 2344 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论