flashcached.cc and memcached.cc files were created to generate flashcached and memcached respectively through a template parameter.
14 lines
238 B
C++
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);
|
|
}
|