[][src]Struct actix_storage_dashmap::DashMapActor

pub struct DashMapActor { /* fields omitted */ }

An implementation of ExpiryStore based on sync actix actors and HashMap

It relies on delay_queue crate to provide expiration.

Example

use actix_storage::Storage;
use actix_storage_dashmap::DashMapActor;
use actix_web::{App, HttpServer};

#[actix_web::main]
async fn main() -> std::io::Result<()> {
    const THREADS_NUMBER: usize = 4;
    let store = DashMapActor::start_default(THREADS_NUMBER);
    // OR
    let store = DashMapActor::with_capacity(100).start(THREADS_NUMBER);
     
    let storage = Storage::build().expiry_store(store).finish();
    let server = HttpServer::new(move || {
        App::new()
            .data(storage.clone())
    });
    server.bind("localhost:5000")?.run().await
}

requires ["actor"] feature

Implementations

impl DashMapActor[src]

#[must_use = "Actor should be started to work by calling `start`"]pub fn new() -> Self[src]

Makes a new DashMapActor without starting it

#[must_use = "Actor should be started to work by calling `start`"]pub fn with_capacity(capacity: usize) -> Self[src]

Makes a new DashMapActor with specified DashMap capacity without starting it

pub fn start_default(threads_num: usize) -> Addr<Self>[src]

Create default actor and start the actor in an actix sync arbiter with specified number of threads

pub fn start(self, threads_num: usize) -> Addr<Self>[src]

Start the actor in an actix sync arbiter with specified number of threads

Trait Implementations

impl Actor for DashMapActor[src]

type Context = SyncContext<Self>

Actor execution context type

impl Clone for DashMapActor[src]

impl Default for DashMapActor[src]

impl Handler<ExpiryRequest> for DashMapActor[src]

type Result = ExpiryResponse

The type of value that this handler will return. Read more

impl Handler<ExpiryStoreRequest> for DashMapActor[src]

type Result = ExpiryStoreResponse

The type of value that this handler will return. Read more

impl Handler<StoreRequest> for DashMapActor[src]

type Result = StoreResponse

The type of value that this handler will return. Read more

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,