[][src]Struct rocket_file_cache::CacheBuilder

pub struct CacheBuilder { /* fields omitted */ }

A builder for Caches.

Methods

impl CacheBuilder
[src]

pub fn new() -> CacheBuilder
[src]

Create a new CacheBuilder.

pub fn size_limit<'a>(&'a mut self, size_limit: usize) -> &mut Self
[src]

Sets the maximum number of bytes (as they exist in the FS) that the cache can hold. The cache will take up more space in memory due to the backing concurrent HashMap it uses. The memory overhead can be controlled by setting the concurrency parameter.

Arguments

  • size_limit - The number of bytes the cache will be able to hold.

pub fn concurrency<'a>(&'a mut self, concurrency: u16) -> &mut Self
[src]

Sets the concurrency setting of the concurrent hashmap backing the cache. A higher concurrency setting allows more threads to access the hashmap at the expense of more memory use. The default is 16.

pub fn accesses_per_refresh<'a>(&'a mut self, accesses: usize) -> &mut Self
[src]

Sets the number of times a file can be accessed from the cache before it will be refreshed from the disk. By providing 1000, that will instruct the cache to refresh the file every 1000 times its accessed. By default, the cache will not refresh the file.

This should be useful if you anticipate bitrot for the cache contents in RAM, as it will refresh the file from the FileSystem, meaning that if there is an error in the cached data, it will only be served for an average of n/2 accesses before the automatic refresh replaces it with an assumed correct copy.

Panics

This function will panic if 0 is supplied. This is to prevent 0 being used as a divisor in a modulo operation later.

pub fn priority_function<'a>(
    &'a mut self,
    priority_function: fn(_: usize, _: usize) -> usize
) -> &mut Self
[src]

Override the default priority function used for determining if the cache should hold a file. By default a score is calculated using the square root of the size of a file, times the number of times it was accessed. Files with higher priority scores will be kept in the cache when files with lower scores are added. If there isn't room in the cache for two files, the one with the lower score will be removed / won't be added.

The priority function should be kept simple, as it is calculated on every file in the cache every time a new file is attempted to be added.

Example

use rocket_file_cache::Cache;
use rocket_file_cache::CacheBuilder;
let cache: Cache = CacheBuilder::new()
    .priority_function(|access_count, size| {
        access_count * access_count * size
    })
    .build()
    .unwrap();

pub fn min_file_size<'a>(&'a mut self, min_size: usize) -> &mut Self
[src]

Set the minimum size in bytes for files that can be stored in the cache

pub fn max_file_size<'a>(&'a mut self, max_size: usize) -> &mut Self
[src]

Set the maximum size in bytes for files that can be stored in the cache

pub fn build(&self) -> Result<Cache, CacheBuildError>
[src]

Finalize the cache.

Example

use rocket_file_cache::Cache;
use rocket_file_cache::CacheBuilder;

let cache: Cache = CacheBuilder::new()
    .size_limit(1024 * 1024 * 50) // 50 MB cache
    .min_file_size(1024 * 4) // Don't store files smaller than 4 KB
    .max_file_size(1024 * 1024 * 6) // Don't store files larger than 6 MB
    .build()
    .unwrap();

Trait Implementations

impl Debug for CacheBuilder
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> IntoCollection for T

impl<T, I> AsResult for T where
    I: Input,