You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Removed the language of oppression and violence
and replaced it with more neutral language.
Note that problematic words in the code have
to remain in the docs until the code changes.
Original pull request: #176.
for an explanation on how to start Apache Cassandra.
28
-
Once installed, starting Cassandra is typically a matter of executing the following command: `CASSANDRA_HOME/bin/cassandra -f`.
28
+
Once installed, starting Cassandra is typically a matter of running the following command: `CASSANDRA_HOME/bin/cassandra -f`.
29
29
30
30
To create a Spring project in STS, go to File -> New -> Spring Template Project -> Simple Spring Utility Project and press Yes when prompted.
31
31
Then enter a project and a package name, such as `org.spring.data.cassandra.example`.
@@ -121,7 +121,7 @@ as well as the detailed documentation {spring-framework-docs}core.html#beans-jav
121
121
=== Registering a Session instance using Java-based metadata
122
122
123
123
You can configure Reactive Cassandra support by using <<cassandra.cassandra-java-config,Java Configuration classes>>.
124
-
Reactive Cassandra support adapts a `CqlSession` to provide a reactive execution model on top of an asynchronous driver.
124
+
Reactive Cassandra support adapts a `CqlSession` to provide a reactive processing model on top of an asynchronous driver.
125
125
126
126
A reactive `CqlSession` is configured similarly to an imperative `CqlSession`.
127
127
We provide supporting configuration classes that come with predefined defaults and require only environment-specific information to configure Spring Data for Apache Cassandra.
@@ -145,8 +145,8 @@ See <<cassandra.schema-management>> for further details.
145
145
146
146
The `ReactiveCqlTemplate` class is the central class in the core CQL package.
147
147
It handles the creation and release of resources.
148
-
It performs the basic tasks of the core CQL workflow, such as statement creation and execution, leaving application code to provide CQL and extract results.
149
-
The `ReactiveCqlTemplate` class executes CQL queries and update statements and performs iteration over `ResultSet` instances and extraction of returned parameter values.
148
+
It performs the basic tasks of the core CQL workflow, such as creating and running statements, leaving application code to provide CQL and extract results.
149
+
The `ReactiveCqlTemplate` class runs CQL queries and update statements and performs iteration over `ResultSet` instances and extraction of returned parameter values.
150
150
It also catches CQL exceptions and translates them into the generic, more informative, exception hierarchy defined in the `org.springframework.dao` package.
151
151
152
152
When you use the `ReactiveCqlTemplate` in your code, you need only implement callback interfaces, which have a clearly defined contract.
0 commit comments