Please read me

This commit is contained in:
Félix Baylac-Jacqué 2021-11-17 21:41:21 +01:00
parent 152d9d81b5
commit d4441e93fa
Signed by: picnoir
GPG Key ID: EFD315F31848DBA4
1 changed files with 28 additions and 0 deletions

28
README.md Normal file
View File

@ -0,0 +1,28 @@
# 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
);
```