23 | Every 3 seconds we fetch the current time from the database, however because the sql query
24 | result is cached on the server on the first call, the time stays the same untill you clear
25 | the cache and no more SQL queries are made.
26 |
27 |
28 | After you clear the cache you should see the time change because a real SQL query is made.
29 |
30 |
31 | Also note how real SQL queryies are slower than cache hits.
32 |