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
2 changes: 1 addition & 1 deletion docs/content/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ description: >

<div class="hero-section hero-section--compact">
<h1 class="hero-title">Build Change-driven Solutions with Drasi</h1>
<p class="hero-subtitle">Drasi is a Data Change Processing platform that makes it easy build change-driven solutions that detect complex changes across your data sources and react to them instantly.</p>
<p class="hero-subtitle">Drasi is a Data Change Processing platform that makes it easy to build change-driven solutions that detect complex changes across your data sources and react to them instantly.</p>

<div class="cta-group">
<a href="/drasi-server/getting-started/" class="cta-button cta-button--primary">
Expand Down
2 changes: 1 addition & 1 deletion docs/content/concepts/overview/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ More detail about Sources is available in the [Sources](/concepts/sources) overv

### Continuous Queries

Continuous Queries, as the name implies, are queries that run continuously. To understand what is unique about them, it is useful to contrast them with a the kind of {{< term "Instantaneous Query" "instantaneous queries" >}} developers are accustomed to running against databases.
Continuous Queries, as the name implies, are queries that run continuously. To understand what is unique about them, it is useful to contrast them with the kind of {{< term "Instantaneous Query" "instantaneous queries" >}} developers are accustomed to running against databases.

When you execute an **instantaneous query**, you are running the query against the database at a point in time. The database calculates the results to the query and returns them. While you work with those results, you are working with a static snapshot of the data and are unaware of any changes that may have happened to the data after you ran the query. If you run the same instantaneous query periodically, the query results might be different each time due to changes made to the data by other processes. But to understand what has changed, you would need to compare the most recent result with the previous result.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ npm install --save @drasi/signalr-react

#### ResultSet Component

The `ResultSet` component requires an endpoint to the SignalR reaction and a query ID. It will render a copy of it's children for every item in the result set of that query, and keep the data up to date via the SignalR connection.
The `ResultSet` component requires an endpoint to the SignalR reaction and a query ID. It will render a copy of its children for every item in the result set of that query, and keep the data up to date via the SignalR connection.

```jsx
<ResultSet url='<Your Drasi SignalR endpoint>' queryId='<query name>' sortBy={item => item.field1}>
Expand Down Expand Up @@ -359,7 +359,7 @@ npm install --save @drasi/signalr-vue

#### ResultSet Component

The `ResultSet` component requires an endpoint to the SignalR reaction and a query ID. It will render a copy of it's children for every item in the result set of that query, and keep the data up to date via the SignalR connection.
The `ResultSet` component requires an endpoint to the SignalR reaction and a query ID. It will render a copy of its children for every item in the result set of that query, and keep the data up to date via the SignalR connection.

```vue
<ResultSet url="<your signalr endpoint>" queryId="<query name>" :sortBy="item => item.field1">
Expand Down
2 changes: 1 addition & 1 deletion docs/themes/docsy
Submodule docsy updated 303 files