Skip to main content

Node Inputs

Required Fields

Site Configuration ID:
The unique identifier for your Fasterize site configuration.
Example: "site_12345"
Operation:
The operation to perform on the data storage.
Available options:
  • store: Store data at the edge
  • retrieve: Retrieve stored data
  • delete: Delete stored data
    Example: "store"
Key:
The unique identifier for the data to store or retrieve.
Example: "user_preferences"

Optional Fields

Value:
The data to store (required for ‘store’ operation).
Example: {"theme": "dark", "language": "en"}
TTL (Time To Live):
The duration (in seconds) for which the data should be stored.
Example: 3600 (1 hour)

Node Output

Storage Results:
The result of the storage operation, including the stored/retrieved data and operation status.
Example Output:
{
  "operation": "store",
  "key": "user_preferences",
  "status": "success",
  "ttl": 3600
}
For retrieve operations:
{
  "operation": "retrieve",
  "key": "user_preferences",
  "value": {"theme": "dark", "language": "en"},
  "status": "success"
}

Node Functionality

The Fasterize Data Storage node:
  • Stores data at the edge for ultra-fast access.
  • Supports CRUD operations (Create, Read, Delete).
  • Enables edge-level data caching with configurable TTL.
  • Reduces database load by serving data from edge locations.
  • Provides global data availability with minimal latency.
I