https://github.com/supermarcus/asyncsql
A third-party library that allows you to do query in other thread. Use part of PocketMine's SPL. GPL Licenced
https://github.com/supermarcus/asyncsql
Last synced: 8 months ago
JSON representation
A third-party library that allows you to do query in other thread. Use part of PocketMine's SPL. GPL Licenced
- Host: GitHub
- URL: https://github.com/supermarcus/asyncsql
- Owner: SuperMarcus
- License: lgpl-3.0
- Created: 2015-07-27T17:37:03.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-07-28T05:52:21.000Z (almost 11 years ago)
- Last Synced: 2025-03-30T21:44:03.464Z (about 1 year ago)
- Language: PHP
- Size: 137 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# AsyncSQL
This library allows you to query databases without blocking the main thread. Especially for some game server, they've got a lots of information to fetch from the remote database. This library is also use to be substituted with PocketMine's native AsyncTask with long-term database connection.
## Third-party Libraries/Protocols Used
* __[PHP MySQLi](http://php.net/manual/en/book.mysqli.php)__
* __[PHP pthreads](http://pthreads.org/)__ by _[krakjoe](https://github.com/krakjoe)_: Threading for PHP - Share Nothing, Do Everything.