it's like a cache but for database. With a pool connexion i can have unlimited connexion at the same time but i need something like memory ?
Oh we are french together i send u a pm
I did not install a database server since at least 7 or 8 years so I would say only stupid things about the requirements nowadays. I don't know what are the modern tools to ease your task or the recommended architecture of today. But things should not be completely different. You need to think seriously about the following things:
- hardware and monitoring (to ensure that your server is up and works as expected);
- transmission of data (via internet? how are the data sent to the server?);
- multiple connections (connection pooler?);
- many concurrent writes (which scenario when editing the same data? when max number is reached? etc.);
- database performance (tables and records organization, triggers, indexes, etc.);
- backup (you have only one server, so that would be stupid to lose everything with a crash).