diff --git a/cs/benchmark/FasterYcsbBenchmark.cs b/cs/benchmark/FasterYcsbBenchmark.cs index d16da1c63..85e54012c 100644 --- a/cs/benchmark/FasterYcsbBenchmark.cs +++ b/cs/benchmark/FasterYcsbBenchmark.cs @@ -115,7 +115,7 @@ private void RunYcsb(int thread_idx) int count = 0; #endif - var session = store.NewSession(null, false); + var session = store.NewSession(null, true); while (!done) { @@ -317,7 +317,7 @@ private void SetupYcsb(int thread_idx) else Native32.AffinitizeThreadShardedNuma((uint)thread_idx, 2); // assuming two NUMA sockets - var session = store.NewSession(null, false); + var session = store.NewSession(null, true); #if DASHBOARD var tstart = Stopwatch.GetTimestamp(); diff --git a/cs/playground/SumStore/RecoveryTest.cs b/cs/playground/SumStore/RecoveryTest.cs index 4b7c88b2f..b2f618a34 100644 --- a/cs/playground/SumStore/RecoveryTest.cs +++ b/cs/playground/SumStore/RecoveryTest.cs @@ -127,7 +127,7 @@ private void RunThread(int threadId, bool continueSession) else { // Register thread with FASTER - session = fht.NewSession(threadId.ToString(), false); + session = fht.NewSession(threadId.ToString(), true); } GenerateClicks(session, sno);