Skip to content

Commit 0c48b32

Browse files
committed
Simplify cache table wording in docs
1 parent db065d9 commit 0c48b32

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/general/system-configuration-overrides.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ Specify a different [caching driver](optimization/caching.md#caching-drivers) to
511511
| Values | Description |
512512
| --------- | -------------------------------------------------- |
513513
| file | File driver, /system/user/cache/ (default) |
514-
| database | Database driver, stores cache in `{db_prefix}cache` (for example `exp_cache`) |
514+
| database | Database driver, stores cache in `exp_cache` |
515515
| memcached | Memcached driver, configured with memcached config |
516516
| redis | Redis driver, configured with redis config |
517517
| dummy | Dummy driver, will not cache |

docs/optimization/caching.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ By default, ExpressionEngine uses a file-based caching driver, meaning cached it
9393

9494
ExpressionEngine also supports database, Memcached, and Redis caching drivers. You can set which driver is being used in the control panel or via the [cache_driver](general/system-configuration-overrides.md#cache_driver) config override. [Memcached](general/system-configuration-overrides.md#memcached) and [Redis](general/system-configuration-overrides.md#redis) server information can also be set in `config.php`, otherwise ExpressionEngine will try to connect to the default respective ports on localhost.
9595

96-
The database driver stores cache rows in `{db_prefix}cache` (for example `exp_cache`), which can reduce filesystem I/O but adds read/write load to your database server. For higher-throughput workloads, Memcached or Redis are generally better choices.
96+
The database driver stores cache rows in `exp_cache`, which can reduce filesystem I/O but adds read/write load to your database server. For higher-throughput workloads, Memcached or Redis are generally better choices.
9797

9898
A [backup driver](general/system-configuration-overrides.md#cache_driver_backup) can also be specified in the case your primary driver is unavailable. By default, the backup driver is the file driver and it's likely the best failover option due to its reliability, but the backup driver is configurable.
9999

0 commit comments

Comments
 (0)