Skip to main content
This release is 1 version behind 24.6.2 — the latest version of @rivet-gg/actor. Jump to latest

🔩 Rivet Actors have built-in RPC, state, and events — the easiest way to build modern applications.

This package works with Deno
This package works with Deno
JSR Score
88%
Published
a month ago (24.6.1-rc.2)

Functions

f
delete_

Deletes a key-value pair from the key-value store.

f
deleteAll

Deletes all data from the key-value store. This CANNOT be undone.

f
deleteBatch

Deletes a batch of key-value pairs from the key-value store.

f
get

Retrieves a value from the key-value store.

f
getBatch

Retrieves a batch of key-value pairs.

f
list

Retrieves all key-value pairs in the KV store. When using any of the options, the keys lexicographic order is used for filtering.

f
put

Stores a key-value pair in the key-value store.

f
putBatch

Stores a batch of key-value pairs.

Interfaces

I
GetBatchOptions

Options for the getBatch function.

I
GetOptions

Options for the get function.

I
PutBatchOptions

Options for the putBatch function.

I
PutOptions

Options for the put function.

Type Aliases

T
Kv
No documentation available

Variables

Add Package

deno add jsr:@rivet-gg/actor

Import symbol

import * as mod from "@rivet-gg/actor/kv";

---- OR ----

Import directly with a jsr specifier

import * as mod from "jsr:@rivet-gg/actor/kv";