Skip to content

Commit 20cbd64

Browse files
committed
Remove comments on SQLite connection string compression
1 parent 5d39464 commit 20cbd64

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/OSPSuite.Infrastructure.Serialization/Journal/IConnectionProvider.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@ public class ConnectionProvider : IConnectionProvider
1212
{
1313
public IDbConnection CreateConnection(string databasePath)
1414
{
15-
// Note: The original System.Data.SQLite connection string included "Compress=True",
16-
// but Microsoft.Data.Sqlite does not support the Compress parameter.
17-
// SQLite works fine without compression, and compression adds CPU overhead.
18-
// See COMPRESS_INVESTIGATION.md for details.
1915
var connectionString = $"Data Source={databasePath};Foreign Keys=True";
2016
var cn = new SqliteConnection(connectionString);
2117
cn.Open();

0 commit comments

Comments
 (0)