CTRL+C doesn't get through. And when I stop via CTRL+Break (hard kill), the SQLite database transactions are not committed and therefore I cannot search anything (WAL file remains). I guess I would enjoy an interruptible and resumable index run.
E.g. using try: ... except: KeyboardInterrupt: ...
CTRL+C doesn't get through. And when I stop via CTRL+Break (hard kill), the SQLite database transactions are not committed and therefore I cannot search anything (WAL file remains). I guess I would enjoy an interruptible and resumable index run.
E.g. using
try: ... except: KeyboardInterrupt: ...