prorm API Reference
    Preparing search index...

    Interface HazelcastStoreOptions

    Connection options for HazelcastStore.

    interface HazelcastStoreOptions {
        config?: Record<string, unknown>;
        client?: HazelcastClientLike;
    }
    Index
    config?: Record<string, unknown>

    Hazelcast client config passed straight through to Client.newHazelcastClient(config) (cluster name, network member addresses, etc). Ignored when a pre-built client is supplied.

    client?: HazelcastClientLike

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