Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions src/content/docs/d1/reference/glossary.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
title: Glossary
pcx_content_type: glossary
sidebar:
order: 12

---

import { Glossary } from "~/components"

Review the definitions for terms used across Cloudflare's D1 documentation.

<Glossary product="d1" />
14 changes: 14 additions & 0 deletions src/content/glossary/d1.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
productName: D1
entries:
- term: index
general_definition: |-
a data structure which improves the efficiency of data retrieval from a table. Writing to a column referenced in an index adds at least (1) more row to rows written (as the index needs to be updated too), but this is offset by the benefit in the reduction of rows read.

- term: SQLite
general_definition: |-
a lightweight, embedded database engine. It is a specific implementation of a relational database management system (RDBMS). SQLite uses SQL as its query language.

- term: Workers binding
general_definition: |-
a feature which allows a Cloudflare Worker to interact with resources on the Cloudflare Developer Platform. Refer to [What is a binding?](/workers/runtime-apis/bindings/#what-is-a-binding).
Loading