prorm API Reference
    Preparing search index...

    Interface MemcachedStoreOptions

    Connection options for MemcachedStore.

    servers is a comma-separated list of host:port entries (memjs's standard format, e.g. "localhost:11211" or "cache1:11211,cache2:11211"). options is passed straight through to memjs.Client.create(servers, options). Supply a pre-built memjs client to skip the lazy require('memjs') entirely (used by tests to inject a mock, and by callers who manage the client themselves).

    interface MemcachedStoreOptions {
        servers?: string;
        options?: Record<string, unknown>;
        client?: unknown;
    }
    Index
    servers?: string

    Comma-separated host:port server list. Defaults to memjs's own default.

    options?: Record<string, unknown>

    memjs client options (username/password/timeout/retries/etc).

    client?: unknown

    Pre-built memjs client; when given, connect() uses it and skips require('memjs').