@@ -31,11 +31,11 @@ public class GenericServer<Key, Value, Input, Output, Functions, ParameterSerial
3131 /// <param name="functionsGen"></param>
3232 /// <param name="serializer"></param>
3333 /// <param name="keyInputSerializer"></param>
34- /// <param name="lockingMode "></param>
34+ /// <param name="concurrencyControlMode "></param>
3535 /// <param name="maxSizeSettings"></param>
3636 /// <param name="loggerFactory"></param>
37- public GenericServer ( ServerOptions opts , Func < Functions > functionsGen , ParameterSerializer serializer , IKeyInputSerializer < Key , Input > keyInputSerializer ,
38- LockingMode lockingMode , MaxSizeSettings maxSizeSettings = default , ILoggerFactory loggerFactory = null )
37+ public GenericServer ( ServerOptions opts , Func < Functions > functionsGen , ParameterSerializer serializer , IKeyInputSerializer < Key , Input > keyInputSerializer ,
38+ ConcurrencyControlMode concurrencyControlMode , MaxSizeSettings maxSizeSettings = default , ILoggerFactory loggerFactory = null )
3939 {
4040 this . opts = opts ;
4141
@@ -45,7 +45,7 @@ public GenericServer(ServerOptions opts, Func<Functions> functionsGen, Parameter
4545 if ( ! Directory . Exists ( opts . CheckpointDir ) )
4646 Directory . CreateDirectory ( opts . CheckpointDir ) ;
4747
48- store = new FasterKV < Key , Value > ( indexSize , logSettings , checkpointSettings , lockingMode : lockingMode , loggerFactory : loggerFactory ) ;
48+ store = new FasterKV < Key , Value > ( indexSize , logSettings , checkpointSettings , concurrencyControlMode : concurrencyControlMode , loggerFactory : loggerFactory ) ;
4949
5050 if ( opts . Recover )
5151 {
0 commit comments