1.0.4 • Published 5 years ago
histdbimport v1.0.4
Imports a .zsh_history file into a zsh-histdb sqlite database.
Like go-histdbimport, but 6000x faster.
Usage
Make sure you have node installed, then run
npx histdbimportAlternatively, get the source from this repo and run it from here:
git clone https://github.com/phiresky/ts-histdbimport
cd ts-histdbimport
npm install
npm run insert-allWill import ~/.zsh_history into ~/.histdb/zsh-history.db.
You can set env vars to change the input / output filename:
$ history_file=zh database=x.db npm run insert-all
Benchmark
Importing a history file with 299k entries:
- go-histdbimport: 9.08 inserts/s (would take 9 hours)
- ts-histdbimport: 56500 inserts/s (5.29s total)