Skip to content

Commit c5fd1c6

Browse files
committed
Update README.md
1 parent a4fc363 commit c5fd1c6

File tree

1 file changed

+9
-17
lines changed

1 file changed

+9
-17
lines changed

README.md

Lines changed: 9 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -5,25 +5,25 @@ Cassandra client library for PHP, which supports Protocol v5 (Cassandra 4.x) and
55

66
## Features
77
* Using Protocol v5 (Cassandra 4.x)
8-
* Support ssl/tls with stream transport layer
9-
* Support asynchronous and synchronous request
8+
* Supports ssl/tls with stream transport layer
9+
* Supports asynchronous and synchronous requests
1010
* Support for logged, unlogged and counter batches
1111
* The ability to specify the consistency, "serial consistency" and all flags defined in the protocol
12-
* Support Query preparation and execute
13-
* Support all data types conversion and binding, including collection types, tuple and UDT
14-
* Support conditional update/insert
12+
* Supports Query preparation and execute
13+
* Supports all data types, including collection types, tuple and UDT
14+
* Supports conditional update/insert
1515
* 5 fetch methods (fetchAll, fetchRow, fetchPairs, fetchCol, fetchOne)
1616
* Two transport layers - socket and stream.
17-
* Using exceptions to report errors
17+
* Uses exceptions to report errors
1818
* 800% performance improvement(async mode) than other php cassandra client libraries
1919

2020
## Installation
2121

2222
PHP 8.1+ is required. There is no need for additional libraries.
2323

24-
If you want to use Bigint or Timestamp type, 64-bit system is required.
24+
If you want to use the Bigint or Timestamp types, a 64-bit system is required.
2525

26-
Append dependency into composer.json
26+
Append dependency into composer.json:
2727

2828
```
2929
...
@@ -34,7 +34,7 @@ Append dependency into composer.json
3434
...
3535
```
3636

37-
Also you can just fetch project from Github and include in your code:
37+
Also you can just fetch the repository from Github and include it in your code:
3838
```
3939
require 'php-cassandra-folder-on-your-computer/php-cassandra.php';
4040
```
@@ -344,16 +344,8 @@ new Cassandra\Type\CollectionSet([
344344
]);
345345
```
346346

347-
## Recommend Libraries
348-
* [shen2/fluent-cql](https://github.com/shen2/FluentCQL): write CQL in fluent interface
349-
* [duoshuo/uuid](https://github.com/duoshuo/uuid): generate UUID and TimeUUID
350-
* [shen2/crest](https://github.com/shen2/crest): Restful web API for Cassandra
351-
* [shen2/cadmin](https://github.com/shen2/cadmin): Web admin panel for Cassandra, like phpmyadmin
352-
353347
## Inspired by
354348
* [duoshuo/php-cassandra](https://github.com/duoshuo/php-cassandra)
355-
* [mauritsl/php-cassandra](https://github.com/mauritsl/php-cassandra)
356-
* [evseevnn/php-cassandra-binary](https://github.com/evseevnn/php-cassandra-binary)
357349

358350
## Merged contributions for duoshuo/php-cassandra
359351
* https://github.com/arnaud-lb/php-cassandra/commit/b6444ee5f8f7079d7df80de85201b11f77e0d376

0 commit comments

Comments
 (0)