api: "YAML JSON TOON Database"
version: "1.0.0"
format: "json"
dataset:
  slug: "serverless-computing"
  title: "Serverless Computing"
  description: "Concepts and terms for serverless architectures."
  category: "Cloud Computing"
  category_slug: "cloud-computing"
  tags: "cloud,serverless,functions"
  view_count: 0
data:
  - concept: "Function as a Service"
    description: "Event-driven functions executed in ephemeral containers."
  - concept: "Event-Driven"
    description: "Functions triggered by events such as HTTP requests or queue messages."
  - concept: "Cold Start"
    description: "Latency from initializing a function runtime after idle time."
  - concept: "Stateless"
    description: "Functions do not retain state between invocations."
  - concept: "API Gateway"
    description: "Managed service routing HTTP requests to functions."
  - concept: "Pay-Per-Use"
    description: "Billing based on actual execution time and request count."
