Skip to content

Instantly share code, notes, and snippets.

@tokubass
Created July 10, 2014 10:04
Show Gist options
  • Save tokubass/028d280b754888b55fbc to your computer and use it in GitHub Desktop.
Save tokubass/028d280b754888b55fbc to your computer and use it in GitHub Desktop.
memcached1.3.2からdeleteは第2引数とらない
use Sledge::Session::Memcached;
BEGIN {
no warnings;
*Sledge::Session::Memcached::_delete_me = sub {
my $self = shift;
my $ok = $self->{_dbh}->delete($self->{_sid});
unless ($ok) {
warn 'delete command fails';
}
$ok;
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment