aboutsummaryrefslogtreecommitdiff
path: root/cachetest.c
diff options
context:
space:
mode:
Diffstat (limited to 'cachetest.c')
-rw-r--r--cachetest.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/cachetest.c b/cachetest.c
new file mode 100644
index 0000000..c689862
--- /dev/null
+++ b/cachetest.c
@@ -0,0 +1,32 @@
+#include "buffer.h"
+#include "exit.h"
+#include "cache.h"
+#include "str.h"
+
+int main(int argc,char **argv)
+{
+ int i;
+ char *x;
+ char *y;
+ unsigned int u;
+ uint32 ttl;
+
+ if (!cache_init(200)) _exit(111);
+
+ if (*argv) ++argv;
+
+ while (x = *argv++) {
+ i = str_chr(x,':');
+ if (x[i])
+ cache_set(x,i,x + i + 1,str_len(x) - i - 1,86400);
+ else {
+ y = cache_get(x,i,&u,&ttl);
+ if (y)
+ buffer_put(buffer_1,y,u);
+ buffer_puts(buffer_1,"\n");
+ }
+ }
+
+ buffer_flush(buffer_1);
+ _exit(0);
+}