diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-09-12 21:18:09 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-09-12 21:18:09 +0000 |
commit | 3300d6861d4402be626816af041a8a1e1a1cfc48 (patch) | |
tree | 5dd9c465f304a3ff55eb8bdaec94f68e4f2f7249 /conf-tmpl | |
parent | 53c3ffb76f89f96279ddd950b2b3d011e854b4e1 (diff) | |
download | hercules-3300d6861d4402be626816af041a8a1e1a1cfc48.tar.gz hercules-3300d6861d4402be626816af041a8a1e1a1cfc48.tar.bz2 hercules-3300d6861d4402be626816af041a8a1e1a1cfc48.tar.xz hercules-3300d6861d4402be626816af041a8a1e1a1cfc48.zip |
- Updated convert_engine.sql to use TYPE instead of ENGINE to be compatible with Mysql 4 installations.
- case_sensitive is now off by default due to performance issues.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8726 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'conf-tmpl')
-rw-r--r-- | conf-tmpl/Changelog.txt | 3 | ||||
-rw-r--r-- | conf-tmpl/login_athena.conf | 7 |
2 files changed, 8 insertions, 2 deletions
diff --git a/conf-tmpl/Changelog.txt b/conf-tmpl/Changelog.txt index 0244ea2e1..aa1c380ea 100644 --- a/conf-tmpl/Changelog.txt +++ b/conf-tmpl/Changelog.txt @@ -1,5 +1,8 @@ Date Added
+2006/09/12
+ * case_sensitive is now off by default due to performance issues
+ (login_athena.conf). [Skotlex]
2006/09/11
* Corrected name of config settings pc_luk_status_def, mob_luk_status_def
(status.conf) [Skotlex]
diff --git a/conf-tmpl/login_athena.conf b/conf-tmpl/login_athena.conf index c04dac984..beb6b6169 100644 --- a/conf-tmpl/login_athena.conf +++ b/conf-tmpl/login_athena.conf @@ -50,8 +50,11 @@ ladminallowip: all // This prevents usage of >& log.file
console: off
-// Are login's case sensitive?
-case_sensitive: on
+// Are login's case sensitive (SQL only)?
+// WARNING: Note that turning this on will cause login queries to use BINARY
+// searches, which disable the table's index and cause severe performance
+// penalties on large tables.
+case_sensitive: off
// Gamemaster password, used with the @gm command to obtain GM commands (level of gm set with level_new_gm parameter).
// NOTICE: You should also change this one.
|