File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed
modules/nextflow/src/main/groovy/nextflow/cache/sqlite Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -87,11 +87,13 @@ class SQLiteCacheStore implements CacheStore {
87
87
88
88
// Configure SQLite for better performance and concurrency
89
89
def stmt = connection. createStatement()
90
- stmt. execute(" PRAGMA journal_mode=WAL;" )
91
- stmt. execute(" PRAGMA synchronous=NORMAL;" )
92
- stmt. execute(" PRAGMA cache_size=10000;" )
93
- stmt. execute(" PRAGMA temp_store=MEMORY;" )
94
- stmt. execute(" PRAGMA busy_timeout=30000;" ) // 30 seconds timeout
90
+ stmt. execute("""
91
+ PRAGMA journal_mode=WAL;
92
+ PRAGMA synchronous=NORMAL;
93
+ PRAGMA cache_size=10000;
94
+ PRAGMA temp_store=MEMORY;
95
+ PRAGMA busy_timeout=30000;
96
+ """ )
95
97
stmt. close()
96
98
97
99
// Create tables if they don't exist
You can’t perform that action at this time.
0 commit comments