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
Copy file name to clipboardExpand all lines: README.md
+22-13
Original file line number
Diff line number
Diff line change
@@ -2,15 +2,17 @@
2
2
3
3
AMPHP is a collection of event-driven libraries for PHP designed with fibers and concurrency in mind.
4
4
`amphp/mysql` is an asynchronous MySQL client.
5
-
The library allows to dynamically query a server with multiple MySQL connections concurrently.
6
-
The client transparently distributes these queries across a scalable pool of available connections and does so using 100% userland PHP; there are *no external extension dependencies* (e.g. `ext/mysqli`, `ext/pdo`, etc).
5
+
The library implements concurrent querying by transparently distributing queries across a scalable pool of available connections. The client transparently distributes these queries across a scalable pool of available connections and does so using 100% userland PHP; there are *no external extension dependencies* (e.g. `ext/mysqli`, `ext/pdo`, etc.).
7
6
8
7
## Features
9
8
10
-
- Exposes a non-blocking API for issuing multiple MySQL queries concurrently
0 commit comments