Displaying 2 results from an estimated 2 matches for "index_directory".
2024 Apr 22
2
How to use Xapian Omega directly (i.e., without using `recoll` and `xapiandb`) ... Full Set Of Questions Below:
...s? Could `omgrep` or
`python` script be used for specific phrases?
Would the following steps help? Am I planning wrongly?:
1. Index the Text Files within a directory: Use the omindex command
to index the text files. The example command to index all text files
in a directory:
$omindex -d /path/to/index_directory /path/to/text/files/directory
2. Once the text files are indexed, use the omindex command with the
-i option to generate an extensive list of all words. example command:
$omindex -d /path/to/index_directory -i > extensive_list.txt
to generate a plain text file named extensive_list.txt containi...
2011 Oct 18
2
patch proposal: omindex library or daemon
...ault options
session = new Omindex::Session(db_pathname)
user threads use different sessions
session.index_files(list, options) // list & return value are vector of {
char * url, * file_path, * file_ext }
perform a transaction for all files in list; create & return skip_list
session.index_directory(url, dir_name, options)
perform a transaction for all files in a directory tree; return
skip_list
main() moves to omindex_main.cc
process command line, call Omindex::init(), proceed normally
SWIG & Node.js bindings
Omindex daemon mode:
The initial directory pass is optional.
Listen...