aloneguid / parquet-dotnet

Fully managed Apache Parquet implementation
https://aloneguid.github.io/parquet-dotnet/
MIT License
542 stars 141 forks source link

adds basic locking around static caches of stripers and assemblers #420

Closed scottfavre closed 7 months ago

scottfavre commented 8 months ago

fixes #411

This just adds some basic locking around the static caches.

mukunku commented 8 months ago

Couldn't we switch to using ConcurrentDictionary<TKey,TValue> instead? That's what it's meant for.

scottfavre commented 8 months ago

@mukunku good idea, done.