i want to use swoole for a new project. Is there a way to use swoole with MSSQL? I read in the docs that they have coroutines for MySql, Postgres, Redis. But I didn't find anything about MSSQL.
Asked
Active
Viewed 107 times
0
-
You can use co-routines anyways. – Markus Zeller Nov 22 '21 at 16:05
-
Thanks for your answer. So inside go functions you can connect to mssql and make your query and this query will be executed asynchronous? So why they have prebuild connectors for MySql? Is there any difference? – mantsap Nov 22 '21 at 16:09
-
Better use transactions when you need transaction safeness. It is prebuild for convenience and performance. MySQL is just THE optimal DB for PHP since ages. – Markus Zeller Nov 22 '21 at 16:16
-
So you think swoole will have better performance with MySQL instead of MSSQL? – mantsap Nov 22 '21 at 16:26
-
Special DB have special purposes. But I ever would prefer mySQL. – Markus Zeller Nov 22 '21 at 17:35