Skip to content

Commit 40cd1d6

Browse files
Added a hint for potentually problematic pooling with Microsoft.Data.Sqlite 6.x.
1 parent e4125e6 commit 40cd1d6

2 files changed

Lines changed: 21 additions & 3 deletions

File tree

LargeCollections.DiskCache/LargeCollections.DiskCache.csproj

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
@@ -11,10 +11,20 @@
1111
<PackageTags>LargeCollection;LargeCollections;Large;Collection;Collections;Dictionary;DiskCache;Cache;Disk;Sqlite;Spatial;Query</PackageTags>
1212
<NeutralLanguage>en</NeutralLanguage>
1313
<PackageLicenseExpression>MIT</PackageLicenseExpression>
14-
<Description>Dictionary-like collections that allow to limit the amount of memory (RAM) in MB that will be used. Any memory requirement that exceeds this amount is automatically swapped out to disk. Additionally it offers multi-threaded operations for performance improvements.</Description>
14+
<Description>Dictionary-like collections that allow to limit the amount of memory (RAM) in MB that will be used. Any memory requirement that exceeds this amount is automatically swapped out to disk. Additionally it offers multi-threaded operations for performance improvements.
15+
16+
Note: Pooling in Microsoft.Data.Sqlite version 6.x may can cause crashes or memory budget overruns. If possible usage of Microsoft.Data.Sqlite 5.0.13 is recommended.</Description>
1517
<PackageProjectUrl>https://github.com/Developer-Alexander/LargeCollections</PackageProjectUrl>
18+
<PackageReadmeFile>README.md</PackageReadmeFile>
1619
</PropertyGroup>
1720

21+
<ItemGroup>
22+
<None Include="..\README.md">
23+
<Pack>True</Pack>
24+
<PackagePath>\</PackagePath>
25+
</None>
26+
</ItemGroup>
27+
1828
<ItemGroup>
1929
<PackageReference Include="Microsoft.Data.Sqlite" Version="5.0.13" />
2030
</ItemGroup>

LargeCollections/LargeCollections.csproj

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
@@ -16,6 +16,7 @@
1616
There are also thread-safe (concurrent) variants of the corresponding collection types.</Description>
1717
<RepositoryUrl>https://github.com/Developer-Alexander/LargeCollections</RepositoryUrl>
1818
<PackageProjectUrl>https://github.com/Developer-Alexander/LargeCollections</PackageProjectUrl>
19+
<PackageReadmeFile>README.md</PackageReadmeFile>
1920
</PropertyGroup>
2021

2122
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
@@ -34,4 +35,11 @@ There are also thread-safe (concurrent) variants of the corresponding collection
3435
<DefineConstants>$(DefineConstants)</DefineConstants>
3536
</PropertyGroup>
3637

38+
<ItemGroup>
39+
<None Include="..\README.md">
40+
<Pack>True</Pack>
41+
<PackagePath>\</PackagePath>
42+
</None>
43+
</ItemGroup>
44+
3745
</Project>

0 commit comments

Comments
 (0)