Home | Trees | Indices | Help |
|
---|
|
interface to the xapian (http://xapian.org) indexer
|
|||
QUERY_TYPE override this with the query class of the implementation |
|
|||
|
|||
|
|||
|
|||
query type of the specific implemention |
|
||
xapian.Query |
|
||
xapian.Query |
|
||
xapian.Query |
|
||
xapian.Query |
|
||
xapian.Document |
|
||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
XapianIndexer.CommonEnquire |
|
||
|
|||
list of dicts |
|
||
|
|||
|
|||
|
|||
|
|||
|
|||
Inherited from Inherited from Inherited from |
|
|||
INDEX_DIRECTORY_NAME =
override this with a string to be used as the name of the indexing directory/file in the filesystem |
|||
Inherited from |
|
|||
Inherited from |
|
initialize or open a xapian database
|
force to write the current changes to disk immediately
|
create simple queries (strings or field searches) or combine multiple queries (AND/OR) To specifiy rules for field searches, you may want to take a look at 'set_field_analyzers'. The parameter 'match_text_partial' can override the previously defined default setting.
|
generate a query based on an existing query object basically this function should just create a copy of the original
|
generate a query for a plain term of a string query basically this function parses the string and returns the resulting query
|
generate a field query this functions creates a field->value query
|
generate a combined query
|
create an empty document to be filled and added to the index later
|
add a term to a document
|
add a field term to a document
|
add a prepared document to the index database
|
begin a transaction Xapian supports transactions to group multiple database modifications. This avoids intermediate flushing and therefore increases performance. |
cancel an ongoing transaction no changes since the last execution of 'begin_transcation' are written |
submit the changes of an ongoing transaction all changes since the last execution of 'begin_transaction' are written |
return an object containing the results of a query
|
delete a specified document
|
return a list of the contents of specified fields for all matches of a query
|
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Tue Apr 12 18:11:57 2011 | http://epydoc.sourceforge.net |