Skip to content

Commit

Permalink
fix: adjust remark
Browse files Browse the repository at this point in the history
  • Loading branch information
ddevsr committed Jul 9, 2024
1 parent 2a1087d commit 0079494
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions system/Security/CheckPhpIni.php
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,9 @@ public static function checkIni(): array
'opcache.enable_cli' => [],
'opcache.jit' => [],
'opcache.jit_buffer_size' => [],
'opcache.memory_consumption' => ['recommended' => '728', 'remark' => 'Increasing the configured memory size (MB) will improve performance by caching those files (consideration based on free space of memory)'],
'opcache.memory_consumption' => ['recommended' => '512', 'remark' => 'Adjust with your free space of memory)'],
'opcache.interned_strings_buffer' => ['recommended' => '64'],
'opcache.max_accelerated_files' => ['recommended' => '56000', 'remark' => 'Increasing the configured accelerated will many cache files into OPCache hash table'],
'opcache.max_accelerated_files' => ['recommended' => '40000', 'remark' => 'Find many files in your project (example: find your_project/ -iname *.php|wc -l)'],
'opcache.max_wasted_percentage' => ['recommended' => '15'],
'opcache.validate_timestamps' => ['recommended' => '0'],
'opcache.revalidate_freq' => ['recommended' => '0'],
Expand Down

0 comments on commit 0079494

Please sign in to comment.