diff lib/Cache/Memcached.pm @ 2:f5cfb726ea65 default tip

Append/prepend commands. NOTE: gzipping content may produce unpredictable results.
author Maxim Dounin <mdounin@mdounin.ru>
date Sun, 30 Sep 2007 18:01:41 +0400
parents 17fc6afc155e
children
line wrap: on
line diff
--- a/lib/Cache/Memcached.pm
+++ b/lib/Cache/Memcached.pm
@@ -437,6 +437,14 @@ sub set {
     _set("set", @_);
 }
 
+sub append {
+    _set("append", @_);
+}
+
+sub prepend {
+    _set("prepend", @_);
+}
+
 sub _set {
     my $cmdname = shift;
     my Cache::Memcached $self = shift;