Work around error with zlib library compressor
authorKevin M. Rosenberg <kevin@rosenberg.net>
Mon, 4 Jul 2011 16:51:02 +0000 (10:51 -0600)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Mon, 4 Jul 2011 16:51:02 +0000 (10:51 -0600)
README.md
memcache/README.md

index cdef97711e04f0a82e13b04b5ec9cdccca1df45f..b0cfe3fd43a3022c66359e5a2a43593934858e2d 100644 (file)
--- a/README.md
+++ b/README.md
@@ -20,10 +20,14 @@ version 0.4.1. The primary need for the modification is to support the
 `flags` field supported by the memcached server. The flag field is
 used to store information required to deserialize the object data from
 memcached. In addition to adding the `flags` field, the library has
-been heavily refactored.
-
-This library also requires Common Lisp libraries of `cl-store`,
-`flexi-streams`, and `zlib`.
+been heavily refactored. For more information on the changes in
+memcache, see [memcache](memcache.html).
+
+This library also requires Common Lisp libraries of 
+[kmrcl](http://gitpub.b9.com/kmrcl.git),
+[cl-store](http://common-lisp.net/project/cl-store/),
+[flexi-streams](http://weitz.de/flexi-streams/),
+and [zlib](http://common-lisp.net/project/zlib/).
 
 Overview
 --------
index c280b0183373e709d07dddefc69e7c3af651731b..6c172014792125f0dff11d498ba6694ea5c9aa85 100644 (file)
@@ -12,10 +12,17 @@ Date Started: July 1, 2011
 Overview
 --------
 
+<<<<<<< HEAD
 This package is based on the `cl-memcached` library.
 It is substantially modified for use with the memstore
 package. The primary areas of additional functionality
 are:
+=======
+This package is based on the cl-memcached library.  It is
+substantially modified for use with the
+[memstore](http://memstore.b9.com) library. The primary areas of
+additional functionality are:
+>>>>>>> ef7ec94c1f67f7e0733774564a4ed848ff169eba
 
 * Support for flags field with get and set functions.
   This is required as memstore stores bit flags denoting
@@ -37,7 +44,7 @@ are:
   supported by `usocket` are now supported with `memcached`.
 
 * Encapsulated reading and writing to socket stream to avoid
-  handling \#return characters in high-level code.
+  handling \\#return characters in high-level code.
 
 * Changes to support the change in statistics fields with membase.
   Some fields were no longer present. Also, membase 1.7 has
@@ -48,9 +55,10 @@ are:
 * More robust `print-object` functions to avoid errors if fields
   in statistics are not present.
 
-* Removed compatibility functions in `compat.lisp` and using `kmrcl`
-  package to provide those functions as well as utilitizing other
-  `kmrcl` functions to simplify code.
+* Removed compatibility functions in `compat.lisp` by using the
+  [`kmrcl`](http://gitpub.b9.com/kmrcl.git) library to provide those
+  functions as well as utilitizing other `kmrcl` functions to simplify
+  code.
 
 * Added functions to support all memcached API commands,
   such as `flush_all` and `version`.