Quentin SCHROTER

Results 7 comments of Quentin SCHROTER

We plan to use it on customer infrastructure with a deployment of one node per site (in a VM). And use kubeedge for easily updating each site independently of each...

After some research, the problem seems to be between execution mode and not monogame (which is a graphic framewok for game development). Here is a reproductible example ```cs static void...

Hi ! We still have the same issue on production server ... Any news on this ? > 2023-8-21 06:21:21.609+00:00 [.NET ThreadPool Worker]| ERROR) [Database] SQLite error (code 21): bind...

The query is build like that : ```cs var fullQuery = $@" SELECT {string.Join(",\n", selects)} FROM {from} WHERE {string.Join(" AND \n", wheres)} ;"; var query = _db.CreateQuery(fullQuery); var result =...

> 2023-9-3 03:42:56.667+00:00 [.NET ThreadPool Worker]| ERROR) [Database] SQLite error (code 21): bind on a busy prepared statement: [SELECT purgeCnt FROM kvmeta WHERE name=?] > 2023-9-3 03:42:56.667+00:00 [.NET ThreadPool Worker]|...

What is "one handle" ? One Database instance per thread ? So scopped lifetime instance for ASP.Net Core projet ? What will happen if I have 2 databases that are...

Well, I finally managed to prevent concurrency issues by disabling concurrent request on my backend ```cs services.AddRateLimiter(limiterOptions => limiterOptions .AddConcurrencyLimiter(policyName: DEFAULT, options => { options.PermitLimit = 1; options.QueueProcessingOrder = QueueProcessingOrder.OldestFirst;...