Skip to content

Commit e8920f2

Browse files
committed
chore: fix invalid comment in opcache.ini
1 parent 06be674 commit e8920f2

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## 23 (2024-11-25)
4+
5+
Fix invalid comment in `opcache.ini` file
6+
37
## 22 (2024-11-25)
48

59
- Right sizes the PHP-FPM workers for systems with 3-4 cores (previously there were too many workers which simply idled)

config/opcache.ini

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ opcache.memory_consumption=256
1111
opcache.interned_strings_buffer=32
1212
opcache.max_accelerated_files=20000
1313
opcache.max_wasted_percentage=10
14-
# We compromise some (little based on tests) performance gains on the following line by allowing cache-invalidation for dev projects
15-
opcache.revalidate_freq=2
1614
opcache.fast_shutdown=1
15+
16+
# Allow cache invalidation for projects during development
17+
opcache.revalidate_freq=2

0 commit comments

Comments
 (0)