mirror of
https://github.com/codeguy/php-the-right-way.git
synced 2025-08-23 05:33:06 +02:00
9 lines
333 B
Markdown
9 lines
333 B
Markdown
---
|
|
anchor: caching
|
|
---
|
|
|
|
# Caching {#caching_title}
|
|
|
|
PHP is pretty quick by itself, but bottlenecks can arise when you make remote connections, load files, etc.
|
|
Thankfully, there are various tools available to speed up certain parts of your application, or reduce the number of times these various time-consuming tasks need to run.
|