Struct ledb::Storage

source ·
pub struct Storage(_);
Expand description

Storage of documents

Implementations§

Open documents storage using path to the database in filesystem

When storage does not exists it will be created automatically.

On opening storage the existing collections and indexes will be restored automatically.

You can open multiple storages using same path, actually all of them will use same storage instance. Also you can clone storage instance, share it and and send it to another threads.

Checks if the collection exists

Get collection for documents

Note: The collection will be created automatically when is does not exists.

Get openned storages

Methods from Deref<Target = Environment>§

Return the underlying MDB_env handle.

Safety

While this call is in and of itself safe, the caller must ensure that operations against the backing store do not violate Rust aliasing rules, and must not take any action that would cause the MDB_env to be destroyed prematurely, or to use it after this Environment is destroyed.

Copy an LMDB environment to the specified path, with options.

This function may be used to make a backup of an existing environment. No lockfile is created, since it gets recreated at need.

Note

This call can trigger significant file size growth if run in parallel with write transactions, because it employs a read-only transaction. See long-lived transactions under Caveats.

Example
let out = tempdir::TempDir::new_in(".", "lmdbcopy").unwrap();
env.copy(out.path().to_str().unwrap(),
         lmdb::copy::COMPACT).unwrap();
// We could now open up an independent environment in `lmdbcopyXXXX`
// or upload it somewhere, eg, while `env` could continue being
// modified concurrently.

Copy an LMDB environment to the specified file descriptor, with options.

This function may be used to make a backup of an existing environment. No lockfile is created, since it gets recreated at need. See copy() for further details.

Note

This call can trigger significant file size growth if run in parallel with write transactions, because it employs a read-only transaction. See long-lived transactions under Caveats.

Return statistics about the LMDB environment.

Return information about the LMDB environment.

Flush the data buffers to disk.

Data is always written to disk when transactions are committed, but the operating system may keep it buffered. LMDB always flushes the OS buffers upon commit as well, unless the environment was opened with NOSYNC or in part NOMETASYNC. This call is not valid if the environment was opened with RDONLY.

If force is true, force a synchronous flush. Otherwise if the environment has the NOSYNC flag set the flushes will be omitted, and with MAPASYNC they will be asynchronous.

Set environment flags.

This may be used to set some flags in addition to those from EnvBuilder::open(), or to unset these flags. If several threads change the flags at the same time, the result is undefined.

flags specifies the flags to edit, not the new status of all flags. If onoff is true, all flags in flags are set; otherwise, all flags in flags are cleared.

Unsafety

The caller must ensure that multiple threads do not call this concurrently with itself or with get_flags(). This could not be accomplished by using &mut self, since any open databases necessarily have the environment borrowed already.

Example
unsafe {
  // Enable the NOMETASYNC and MAPASYNC flags
  env.set_flags(lmdb::open::NOMETASYNC | lmdb::open::MAPASYNC, true)
    .unwrap();
  assert!(env.flags().unwrap().contains(
    lmdb::open::NOMETASYNC | lmdb::open::MAPASYNC));
  // Turn MAPASYNC back off, leaving NOMETASYNC set
  env.set_flags(lmdb::open::MAPASYNC, false).unwrap();
  assert!(env.flags().unwrap().contains(lmdb::open::NOMETASYNC));
  assert!(!env.flags().unwrap().contains(lmdb::open::MAPASYNC));
}

Get environment flags.

Return the path that was used in EnvBuilder::open().

Panics

Panics if LMDB returns success but sets the path to a NULL pointer.

Return the filedescriptor for the given environment.

Unsafety

The caller must ensure that the file descriptor is not used to subvert normal LMDB functionality, such as by writing to it or closing it.

Set the size of the memory map to use for this environment.

The size should be a multiple of the OS page size. The default is 10485760 bytes. The size of the memory map is also the maximum size of the database. The value should be chosen as large as possible, to accommodate future growth of the database.

The new size takes effect immediately for the current process but will not be persisted to any others until a write transaction has been committed by the current process. Also, only mapsize increases are persisted into the environment.

If the mapsize is increased by another process, and data has grown beyond the range of the current mapsize, starting a transaction will return error::MAP_RESIZED. This function may be called with a size of zero to adopt the new size.

Unsafety

This may only be called if no transactions are active in the current process. Note that the library does not check for this condition, the caller must ensure it explicitly.

Get the maximum number of threads/reader slots for the environment.

Get the maximum size of keys and DUPSORT data we can write.

Depends on the compile-time constant MDB_MAXKEYSIZE in LMDB. Default 511.

Check for stale entries in the reader lock table.

Returns the number of stale slots that were cleared.

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
The type this value dereferences to.
Returns the (constant) value that this value dereferences to.
The resulting type after dereferencing.
Dereferences the value.
Executes the destructor for this type. Read more
Converts this type into the (usually inferred) input type.
Converts this type into the (usually inferred) input type.

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
Clone this value, and then immediately put it into a Box behind a trait object of this trait. Read more
Returns the address of self. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Clone this value, and then immediately put it into a Box behind a trait object of this trait. Read more
Returns the address of self. Read more
Given ptr, which was obtained from a prior call to Self::borrow(), return a value with the same nominal lifetime which is guaranteed to survive mutations to Self. Read more
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.