-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
56 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
[mysqld] | ||
# Force utf8mb4 (multi-byte UTF) encoding (supports emojis, Asian symbols, mathematical symbols, etc.) | ||
# Starting with mariadb 10.5, character-set-server and collation-server can only be set via command line arguments. | ||
#character-set-server = utf8mb4 | ||
#collation-server = utf8mb4_unicode_ci | ||
|
||
# Always use server character set settings | ||
skip-character-set-client-handshake | ||
|
||
# Set innodb as default | ||
default_storage_engine = InnoDB | ||
|
||
innodb_buffer_pool_size = 256M | ||
innodb_log_buffer_size = 8M | ||
innodb_log_file_size = 128MB | ||
|
||
innodb_file_per_table = 1 | ||
|
||
# See https://github.com/docksal/service-db/pull/1 | ||
#innodb_file_format = Barracuda | ||
#innodb_large_prefix = 1 | ||
|
||
# Max packets | ||
max_allowed_packet = 128M |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
character_set_client utf8mb4 | ||
character_set_connection utf8mb4 | ||
character_set_database utf8mb4 | ||
character_set_filesystem binary | ||
character_set_results utf8mb4 | ||
character_set_server utf8mb4 | ||
character_set_system utf8mb3 | ||
collation_connection utf8mb4_unicode_ci | ||
collation_database utf8mb4_unicode_ci | ||
collation_server utf8mb4_unicode_ci | ||
default_storage_engine InnoDB | ||
innodb_buffer_pool_size 268435456 | ||
innodb_file_per_table ON | ||
innodb_flush_log_at_trx_commit 1 | ||
innodb_log_buffer_size 8388608 | ||
innodb_log_file_size 134217728 | ||
max_allowed_packet 134217728 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters