Skip to content
Merged
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
2 changes: 1 addition & 1 deletion src/routes/blog/post/announcing-db-operators/+page.markdoc
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,6 @@ The feature is available now on Appwrite Cloud and will be coming soon to self-h

# More resources

- [Read the documentation to get started](/docs/products/databases/db-operators)
- [Read the documentation to get started](/docs/products/databases/operators)
- [Announcing Transactions API: Reliable multi-record writes across tables](/blog/post/announcing-transactions-api)
- [Announcing Atomic numeric operations](/blog/post/announcing-atomic-numeric-operations)
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ As you can see, when 25 requests were fired simultaneously, only one request suc

# The solution

To combat this problem, we recently announced [a set of DB operators](/docs/products/databases/db-operators) that you can use, which would atomically operate on the server side, ensuring that operations in all requests are captured successfully.
To combat this problem, we recently announced [a set of DB operators](/docs/products/databases/operators) that you can use, which would atomically operate on the server side, ensuring that operations in all requests are captured successfully.

Let's take a look at an example code snippet that shows an accurate representation of how you can increment the counter successfully at each request using DB operators.

Expand Down Expand Up @@ -117,4 +117,4 @@ While learning to code, developers often find handling increments or any such op

- [Announcing DB operators: Update multiple fields without fetching the entire row](/blog/post/announcing-db-operators)
- [Announcing Atomic numeric operations: Safe, server-side increments and decrements](/blog/post/announcing-atomic-numeric-operations)
- [DB operators documentation](/docs/products/databases/db-operators)
- [DB operators documentation](/docs/products/databases/operators)
10 changes: 5 additions & 5 deletions src/routes/docs/products/databases/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@
label: 'Relationships',
href: '/docs/products/databases/relationships'
},
{
label: 'Operators',
href: '/docs/products/databases/operators',
new: isNewUntil('31 Dec 2025')
},
{
label: 'Geo queries',
href: '/docs/products/databases/geo-queries',
Expand Down Expand Up @@ -105,11 +110,6 @@
label: 'CSV imports',
href: '/docs/products/databases/csv-imports',
new: isNewUntil('31 Jul 2025')
},
{
label: 'Database operators',
href: '/docs/products/databases/db-operators',
new: isNewUntil('31 Dec 2025')
}
]
},
Expand Down
Loading