This commit is contained in:
Badrish Chandramouli 2018-11-08 16:29:48 -08:00
Родитель 8888c7dfac
Коммит fe3b3893da
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -17,7 +17,7 @@ namespace ClassCache
static void Main(string[] args)
{
var log = FasterFactory.CreateLogDevice(Path.GetTempPath() + "hybridlog");
var objlog = FasterFactory.CreateObjectLogDevice(Path.GetTempPath() + "hybridlog");
var objlog = FasterFactory.CreateObjectLogDevice(Path.GetTempPath() + "hybridobjlog");
var h = FasterFactory.Create
<CacheKey, CacheValue, CacheInput, CacheOutput, CacheContext, CacheFunctions>
(1L << 20, new CacheFunctions(), new LogSettings { LogDevice = log, ObjectLogDevice = objlog });