xapian-core
1.4.26
|
Factory functions for constructing Database and WritableDatabase objects. More...
Namespaces | |
namespace | Xapian |
The Xapian namespace contains public interfaces for the Xapian library. | |
namespace | Xapian::Auto |
Database factory functions which determine the database type automatically. | |
namespace | Xapian::InMemory |
Database factory functions for the inmemory backend. | |
namespace | Xapian::Chert |
Database factory functions for the chert backend. | |
namespace | Xapian::Remote |
Database factory functions for the remote backend. | |
Functions | |
Database | Xapian::Auto::open_stub (const std::string &file) |
Construct a Database object for a stub database file. | |
WritableDatabase | Xapian::Auto::open_stub (const std::string &file, int action) |
Construct a WritableDatabase object for a stub database file. | |
WritableDatabase | Xapian::InMemory::open () |
Construct a WritableDatabase object for a new, empty InMemory database. | |
Database | Xapian::Chert::open (const std::string &dir) |
Construct a Database object for read-only access to a Chert database. | |
WritableDatabase | Xapian::Chert::open (const std::string &dir, int action, int block_size=0) |
Construct a Database object for update access to a Chert database. | |
Database | Xapian::Remote::open (const std::string &host, unsigned int port, useconds_t timeout=10000, useconds_t connect_timeout=10000) |
Construct a Database object for read-only access to a remote database accessed via a TCP connection. | |
WritableDatabase | Xapian::Remote::open_writable (const std::string &host, unsigned int port, useconds_t timeout=0, useconds_t connect_timeout=10000, int flags=0) |
Construct a WritableDatabase object for update access to a remote database accessed via a TCP connection. | |
Database | Xapian::Remote::open (const std::string &program, const std::string &args, useconds_t timeout=10000) |
Construct a Database object for read-only access to a remote database accessed via a program. | |
WritableDatabase | Xapian::Remote::open_writable (const std::string &program, const std::string &args, useconds_t timeout=0, int flags=0) |
Construct a WritableDatabase object for update access to a remote database accessed via a program. | |
Factory functions for constructing Database and WritableDatabase objects.