From e572dff7108be84a7488026f41146c06e2320fc1 Mon Sep 17 00:00:00 2001 From: Dvir Volk Date: Mon, 10 Oct 2016 18:26:09 +0300 Subject: [PATCH] updated readme a bit --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 569990e..eeb4eb5 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,7 @@ A small library of utility functions and macros for module developers, including * The entire `sds` string library, lifted from Redis itself. * A generic scalable Vector library. Not redis specific but we found it useful. * A few other helpful macros and functions. +* `alloc.h`, an include file that allows modules implementing data types to implicitly replace the `malloc()` function family with the Redis special allocation wrappers. It can be found under the `rmutil` folder, and compiles into a static library you link your module against.