Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ import CodeBlock from '@theme/CodeBlock';
* Pre-made embeddings that are automatically generated from your document content
by RavenDB's [Embeddings generation tasks](../../../ai-integration/generating-embeddings/overview.mdx) using external service providers.

* Note: Vector search queries cannot be used with [Subscription queries](../../../client-api/data-subscriptions/creation/api-overview.mdx#subscription-query).
* Note: Vector search queries cannot be used with [Subscription queries](../../../data-subscriptions/creating-subscription/creating-subscription_api.mdx#subscription-query).

* When executing a dynamic vector search query, RavenDB creates a [Corax Auto-Index](../../../ai-integration/vector-search/vector-search-using-dynamic-query.mdx#corax-auto-indexes) to process the query,
and the results are retrieved from that index.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ import CodeBlock from '@theme/CodeBlock';
* Pre-made embeddings that are automatically generated from your document content
by RavenDB's [Embeddings generation tasks](../../../ai-integration/generating-embeddings/overview.mdx) using external service providers.

* Note: Vector search queries cannot be used with [Subscription queries](../../../client-api/data-subscriptions/creation/api-overview.mdx#subscription-query).
* Note: Vector search queries cannot be used with [Subscription queries](../../../data-subscriptions/creating-subscription/creating-subscription_api.mdx#subscription-query).

* When executing a dynamic vector search query, RavenDB creates a [Corax Auto-Index](../../../ai-integration/vector-search/vector-search-using-dynamic-query.mdx#corax-auto-indexes) to process the query,
and the results are retrieved from that index.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ import CodeBlock from '@theme/CodeBlock';
* Pre-made embeddings that are automatically generated from your document content
by RavenDB's [Embeddings generation tasks](../../../ai-integration/generating-embeddings/overview.mdx) using external service providers.

* Note: Vector search queries cannot be used with [Subscription queries](../../../client-api/data-subscriptions/creation/api-overview.mdx#subscription-query).
* Note: Vector search queries cannot be used with [Subscription queries](../../../data-subscriptions/creating-subscription/creating-subscription_api.mdx#subscription-query).

* When executing a dynamic vector search query, RavenDB creates a [Corax Auto-Index](../../../ai-integration/vector-search/vector-search-using-dynamic-query.mdx#corax-auto-indexes) to process the query,
and the results are retrieved from that index.
Expand Down
2 changes: 1 addition & 1 deletion docs/backup/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ Backups contain both database-level and cluster-level content, as detailed below
| [Identities](../client-api/document-identifiers/working-with-document-identifiers#identities) | ✔ | ✔ |
| [Indexes](../indexes/creating-and-deploying) | Indexes are not preserved,<br />but rebuilt after [restoring](../backup/restore)<br />from backed up index definitions. | ✔ |
| [Ongoing Tasks configuration](../studio/database/tasks/ongoing-tasks/general-info.mdx) | ✔ | ✔ |
| [Subscriptions](../client-api/data-subscriptions/what-are-data-subscriptions) | ✔ | ✔ |
| [Subscriptions](../data-subscriptions/overview) | ✔ | ✔ |

</ContentFrame>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ To get more method overloads, especially ones supporting **delegates**, please a

## Changes API -vs- Data Subscriptions

**Changes API** and [Data Subscription](../../../client-api/data-subscriptions/what-are-data-subscriptions.mdx)
**Changes API** and [Data Subscription](../../../data-subscriptions/overview.mdx)
are services that a RavenDB Server provides subscribing clients.
Both services respond to events that take place on the server, by sending updates
to their subscribers.
Expand All @@ -205,6 +205,6 @@ to their subscribers.

| | Data Subscriptions | Changes API |
|------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| What can the server Track | [Documents](../../../client-api/data-subscriptions/what-are-data-subscriptions.mdx#documents-processing) <br/> [Revisions](../../../client-api/data-subscriptions/advanced-topics/subscription-with-revisioning.mdx) <br/> [Counters](../../../client-api/data-subscriptions/creation/examples.mdx#including-counters) <br/> Time Series | [Documents](../../../client-api/changes/how-to-subscribe-to-document-changes.mdx) <br/> [Indexes](../../../client-api/changes/how-to-subscribe-to-index-changes.mdx) <br/> [Operations](../../../client-api/changes/how-to-subscribe-to-operation-changes.mdx) <br/> [Counters](../../../client-api/changes/how-to-subscribe-to-counter-changes.mdx) <br/> [Time Series](../../../client-api/changes/how-to-subscribe-to-time-series-changes.mdx) |
| What can the server Track | [Documents](../../../data-subscriptions/overview.mdx#how-documents-are-processed) <br/> [Revisions](../../../data-subscriptions/revisions-support.mdx) <br/> [Counters](../../../data-subscriptions/creating-subscription/creating-subscription_api.mdx#example-including-counters) <br/> Time Series | [Documents](../../../client-api/changes/how-to-subscribe-to-document-changes.mdx) <br/> [Indexes](../../../client-api/changes/how-to-subscribe-to-index-changes.mdx) <br/> [Operations](../../../client-api/changes/how-to-subscribe-to-operation-changes.mdx) <br/> [Counters](../../../client-api/changes/how-to-subscribe-to-counter-changes.mdx) <br/> [Time Series](../../../client-api/changes/how-to-subscribe-to-time-series-changes.mdx) |
| What can the server Deliver | Documents <br/> Revisions <br/> Counters <br/> Time Series | Notifications |
| Management | Managed by the Server | Managed by the Client |
4 changes: 2 additions & 2 deletions docs/client-api/changes/content/_what-is-changes-api-java.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ idle and unloaded, regardless of [the configuration value for database idle time

## Changes API -vs- Data Subscriptions

**Changes API** and [Data Subscription](../../../client-api/data-subscriptions/what-are-data-subscriptions.mdx)
**Changes API** and [Data Subscription](../../../data-subscriptions/overview.mdx)
are services that a RavenDB Server provides subscribing clients.
Both services respond to events that take place on the server, by sending updates
to their subscribers.
Expand All @@ -148,6 +148,6 @@ to their subscribers.

| | Data Subscriptions | Changes API |
|------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| What can the server Track | [Documents](../../../client-api/data-subscriptions/what-are-data-subscriptions.mdx#documents-processing) <br/> [Revisions](../../../client-api/data-subscriptions/advanced-topics/subscription-with-revisioning.mdx) <br/> [Counters](../../../client-api/data-subscriptions/creation/examples.mdx#including-counters) <br/> Time Series | [Documents](../../../client-api/changes/how-to-subscribe-to-document-changes.mdx) <br/> [Indexes](../../../client-api/changes/how-to-subscribe-to-index-changes.mdx) <br/> [Operations](../../../client-api/changes/how-to-subscribe-to-operation-changes.mdx) <br/> [Counters](../../../client-api/changes/how-to-subscribe-to-counter-changes.mdx) <br/> [Time Series](../../../client-api/changes/how-to-subscribe-to-time-series-changes.mdx) |
| What can the server Track | [Documents](../../../data-subscriptions/overview.mdx#how-documents-are-processed) <br/> [Revisions](../../../data-subscriptions/revisions-support.mdx) <br/> [Counters](../../../data-subscriptions/creating-subscription/creating-subscription_api.mdx#example-including-counters) <br/> Time Series | [Documents](../../../client-api/changes/how-to-subscribe-to-document-changes.mdx) <br/> [Indexes](../../../client-api/changes/how-to-subscribe-to-index-changes.mdx) <br/> [Operations](../../../client-api/changes/how-to-subscribe-to-operation-changes.mdx) <br/> [Counters](../../../client-api/changes/how-to-subscribe-to-counter-changes.mdx) <br/> [Time Series](../../../client-api/changes/how-to-subscribe-to-time-series-changes.mdx) |
| What can the server Deliver | Documents <br/> Revisions <br/> Counters <br/> Time Series | Notifications |
| Management | Managed by the Server | Managed by the Client |
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ To get more method overloads, especially ones supporting **delegates**, please a

## Changes API -vs- Data Subscriptions

**Changes API** and [Data Subscription](../../../client-api/data-subscriptions/what-are-data-subscriptions.mdx)
**Changes API** and [Data Subscription](../../../data-subscriptions/overview.mdx)
are services that a RavenDB Server provides subscribing clients.
Both services respond to events that take place on the server, by sending updates
to their subscribers.
Expand All @@ -147,6 +147,6 @@ to their subscribers.

| | Data Subscriptions | Changes API |
|------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| What can the server Track | [Documents](../../../client-api/data-subscriptions/what-are-data-subscriptions.mdx#documents-processing) <br/> [Revisions](../../../client-api/data-subscriptions/advanced-topics/subscription-with-revisioning.mdx) <br/> [Counters](../../../client-api/data-subscriptions/creation/examples.mdx#including-counters) <br/> Time Series | [Documents](../../../client-api/changes/how-to-subscribe-to-document-changes.mdx) <br/> [Indexes](../../../client-api/changes/how-to-subscribe-to-index-changes.mdx) <br/> [Operations](../../../client-api/changes/how-to-subscribe-to-operation-changes.mdx) <br/> [Counters](../../../client-api/changes/how-to-subscribe-to-counter-changes.mdx) <br/> [Time Series](../../../client-api/changes/how-to-subscribe-to-time-series-changes.mdx) |
| What can the server Track | [Documents](../../../data-subscriptions/overview.mdx#how-documents-are-processed) <br/> [Revisions](../../../data-subscriptions/revisions-support.mdx) <br/> [Counters](../../../data-subscriptions/creating-subscription/creating-subscription_api.mdx#example-including-counters) <br/> Time Series | [Documents](../../../client-api/changes/how-to-subscribe-to-document-changes.mdx) <br/> [Indexes](../../../client-api/changes/how-to-subscribe-to-index-changes.mdx) <br/> [Operations](../../../client-api/changes/how-to-subscribe-to-operation-changes.mdx) <br/> [Counters](../../../client-api/changes/how-to-subscribe-to-counter-changes.mdx) <br/> [Time Series](../../../client-api/changes/how-to-subscribe-to-time-series-changes.mdx) |
| What can the server Deliver | Documents <br/> Revisions <br/> Counters <br/> Time Series | Notifications |
| Management | Managed by the Server | Managed by the Client |
2 changes: 1 addition & 1 deletion docs/client-api/changes/what-is-changes-api.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ see_also:
source: "docs"
path: "Client API > Changes API"
- title: "What Are Data Subscriptions"
link: "client-api/data-subscriptions/what-are-data-subscriptions"
link: "data-subscriptions/overview"
source: "docs"
path: "Client API > Data Subscriptions"
---
Expand Down
2 changes: 1 addition & 1 deletion docs/client-api/commands/content/_overview-csharp.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ import CodeBlock from '@theme/CodeBlock';
## Execute command - using the Store Request Executor

This example shows how to execute the low-level `CreateSubscriptionCommand` via the **Store**.
(For examples of creating a subscription using higher-level methods, see [subscription creation examples](../../../client-api/data-subscriptions/creation/examples.mdx)).
(For examples of creating a subscription using higher-level methods, see [subscription creation examples](../../../data-subscriptions/creating-subscription/creating-subscription_api.mdx)).

<Tabs groupId='languageSyntax'>
<TabItem value="Execute_command" label="Execute_command">
Expand Down
2 changes: 1 addition & 1 deletion docs/client-api/commands/content/_overview-nodejs.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ import CodeBlock from '@theme/CodeBlock';
## Execute command - using the Store Request Executor

This example shows how to execute the low-level `CreateSubscriptionCommand` via the **Store**.
(For examples of creating a subscription using higher-level methods, see [subscription creation examples](../../../client-api/data-subscriptions/creation/examples.mdx)).
(For examples of creating a subscription using higher-level methods, see [subscription creation examples](../../../data-subscriptions/creating-subscription/creating-subscription_api.mdx)).

<TabItem value="execute_1" label="execute_1">
<CodeBlock language="js">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ and any configurations & customizations that you may have applied.
* [Changes API](../../client-api/changes/what-is-changes-api.mdx) - Receive messages from the server
* [Aggressive caching](../../client-api/how-to/setup-aggressive-caching.mdx) - Configure caching behavior
* [Events](../../client-api/session/how-to/subscribe-to-events.mdx) - Perform custom actions in response to the Session's operations
* [Data Subscriptions](../../client-api/data-subscriptions/what-are-data-subscriptions.mdx) - Define & manage data processing on the client side
* [Data Subscriptions](../../data-subscriptions/overview.mdx) - Define & manage data processing on the client side

</Admonition>

Expand Down
4 changes: 0 additions & 4 deletions docs/client-api/data-subscriptions/_category_.json

This file was deleted.

This file was deleted.

Loading
Loading