Files
scylladb/apps/memcached/flashcached.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
238 B
C++

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