Store Import

By loading data from the persistent internal database into the memory store, data can be moved in and out of this flow at high speed from then on.

Property

ItemDescriptionRequiredType
dataValues to be stored in memory[]object
data[].keyKey where the data will be stored in memorystring
data[].bucket_idBucket ID for the stored data.string
data[].store_keyStore Key for the stored data.string
data[].encryptEncryption settings for the stored data. Disabled by default.object
data[].encrypt.enabledEnable encryption for the stored data. Defaults to false.boolean
data[].encrypt.encrypt_idEncryption ID for the stored data.✅ (enabled=true)string

Sample

kind: StoreImport
data:
  - key: "usersList"
    bucket_id: "bucketForApp"
    store_key: "users"
    encrypt:
      enabled: true
      encrypt_id: encryptDynamicCBC