Caching in the database
All the data for our application is stored on MariaDB. When a request is made for retrieving the list of available students, we run a query on our course_registry
database. Running a single query at a time is simple but as the application gets popular, we will have more concurrent users. As the number of concurrent connections to the database increases, we will have to make sure that our database server is optimized to handle that load. In this section, we will look at the different types of caching that can be performed in the database. Let's start with query caching. Query caching is available by default on MariaDB; to verify if the installation has a query cache, we will use the have_query_cache
global variable.
Note
Global variables are a type of system variables that affect the overall operation of the MariaDB server.
Let's use the SHOW VARIABLES
command to verify if the query cache is available on our MariaDB installation, as shown in the following screenshot:
Now...