hangy

Results 90 comments of hangy

MongoDB not synced with the directory content? I think only @stephanegigandet can check this.

Considering that the number of scans is not part of the product, I imagine the scans should probably not be stored in the `product.sto` file or the `products` collection, but...

Instead of a typical SQL database, we could also test some time series databases like OpenTSDB, ClickHouse, or InfluxDB. Their main advantage is that they're purpose built for ingesting large...

I don't know if systems like InfluxDB are esoteric or just purpose-built for this kind of application. After all, they're used in production by Cisco, eBay, IBM, and others (according...

@fgreinacher this partly implicitly reverts a change that you made here. In #899, we noticed that the behaviour of `FileInfo` in .NET 6 is a bit different to the current...

> With this change, we would actually regress in regards to the `DirectoryInfo.GetFiles, DirectoryInfo.EnumerateFiles, ...` > (see [here](https://learn.microsoft.com/en-us/dotnet/api/system.io.filesysteminfo.lastaccesstime?view=net-6.0#remarks) for details) methods initialization behavior, as those methods no longer return an...

> It caches the results _conditionally_. There's a dirty flag that gets triggered in many conditions. Any clue when it actually is considered dirty? I believe that deleting or moving...

Ouch. `System.IO.FileInfo.Create()` calls `Invalidate()`, but `System.IO.FileInfo.CreateText()` does not. 🤯 (In .NET 6) > There's a lot of gaps for sure. For creation, you have to invoke `IFileInfo.Create()` in order to...

Based on dotnet/runtime#34229, the behaviour might actually differ between .NET Framework 4.8 and .NET 6. 🤔

> To get the latest value, the [Refresh](https://learn.microsoft.com/en-us/dotnet/api/system.io.filesysteminfo.refresh?view=net-6.0) method must be called. That this isn't true for all methods/properties from .NET 5 any more. According to dotnet/dotnet-api-docs#4061, the docs still...