You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Go to file
Félix Baylac-Jacqué 6787e782da
Add an index on the full_insee field
1 year ago
scripts Add an index on the full_insee field 1 year ago
src Adding street transcodification 1 year ago
.gitignore Reference read 1 year ago
Cargo.lock CSV intermediate file approach. 1 year ago
Cargo.toml CSV intermediate file approach. 1 year ago
README.md Please read me 1 year ago
shell.nix Naive SQLite implementation 1 year ago

README.md

Fast Fantoir

time ./scripts/gen-fantoir.sh FANTOIR0721
Generating fantoir CSV
    Finished release [optimized] target(s) in 0.00s
     Running `target/release/fast-fantoir FANTOIR0721`
Generating fantoir SQLite DB
DB generated at /home/ninjatrappeur/code-root/git.alternativebit.fr/fast-fantoir/fantoir.sqlite

real	0m13,319s
user	0m9,804s
sys	0m3,458s

DB Schema:

sqlite> .tables
fantoir

sqlite> .schema fantoir
CREATE TABLE IF NOT EXISTS "fantoir"(
  "full_insee" TEXT,
  "rivoli_with_key" TEXT,
  "libelle" TEXT
);