"Refactor database shm and WAL files for improved performance"

This commit is contained in:
2025-05-29 13:05:42 +02:00
parent 1297f3af3c
commit 4c1aa00393
4 changed files with 49 additions and 25 deletions

View File

@@ -19,11 +19,12 @@ import subprocess
import json
import signal
# Windows-spezifische Fixes früh importieren (nur einmal)
# Windows-spezifische Fixes früh importieren (sichere Version)
if os.name == 'nt':
try:
from utils.windows_fixes import get_windows_thread_manager
# apply_all_windows_fixes() wird automatisch beim Import ausgeführt
print("✅ Windows-Fixes (sichere Version) geladen")
except ImportError as e:
# Fallback falls windows_fixes nicht verfügbar
get_windows_thread_manager = None