collections-cache 0.3.2.20250303__tar.gz → 0.3.3.20250303__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: collections-cache
3
- Version: 0.3.2.20250303
3
+ Version: 0.3.3.20250303
4
4
  Summary: collections-cache is a Python package for managing data collections across multiple SQLite databases. It allows efficient storage, retrieval, and updating of key-value pairs, supporting various data types serialized with pickle. The package uses parallel processing for fast access and manipulation of large collections.
5
5
  License: MIT
6
6
  Author: Luiz-Trindade
@@ -28,9 +28,9 @@ class Collection_Cache:
28
28
 
29
29
  def configure_connection(self, conn):
30
30
  conn.executescript("""
31
+ PRAGMA synchronous = OFF;
31
32
  PRAGMA auto_vacuum = FULL;
32
33
  PRAGMA journal_mode = WAL;
33
- PRAGMA synchronous = NORMAL;
34
34
  PRAGMA wal_autocheckpoint = 1000;
35
35
  PRAGMA cache_size = -2000;
36
36
  PRAGMA temp_store = MEMORY;
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "collections-cache"
3
- version = "0.3.2.20250303"
3
+ version = "0.3.3.20250303"
4
4
  description = "collections-cache is a Python package for managing data collections across multiple SQLite databases. It allows efficient storage, retrieval, and updating of key-value pairs, supporting various data types serialized with pickle. The package uses parallel processing for fast access and manipulation of large collections."
5
5
  authors = ["Luiz-Trindade <luiz.gabriel.m.trindade@gmail.com>"]
6
6
  license = "MIT"