Files
scylladb/apps/memcached/memcached.cc
Raphael S. Carvalho 35f37a4235 memcache: generate flashcache
flashcached.cc and memcached.cc files were created to generate
flashcached and memcached respectively through a template parameter.
2014-11-25 09:10:33 -02:00

14 lines
237 B
C++

/*
* Copyright 2014 Cloudius Systems
* memcached
*/
#include "memcached.hh"
int main(int ac, char** av)
{
constexpr bool WithFlashCache = false;
memcache_instance<WithFlashCache> instance;
return instance.run(ac, av);
}