From: antirez Date: Thu, 22 Nov 2012 14:50:00 +0000 (+0100) Subject: EVALSHA is now case insensitive. X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/95f68f7b0fc4ffc700361484b6c792a8e03f3a13?hp=95f68f7b0fc4ffc700361484b6c792a8e03f3a13 EVALSHA is now case insensitive. EVALSHA used to crash if the SHA1 was not lowercase (Issue #783). Fixed using a case insensitive dictionary type for the sha -> script map used for replication of scripts. ---