samyycX / CS2-PlayerModelChanger

A lightweighted counterstrikesharp plugin to change player model.
GNU General Public License v3.0
62 stars 8 forks source link

Adding DB Connection Pooling #12

Closed xshadowbringer closed 7 months ago

xshadowbringer commented 7 months ago

In all plugins that use MySqlConnector we use Pooling - What is pooling? We create connections to the database, but after the task is done, they are not closed but go to the reuse pool, which can sometimes cause crashes with more players and a large number of database queries.

-- partiusfabaa

samyycX commented 7 months ago

thanks