From d4441e93fa7c1a13644c54330589de4cb12db73f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Baylac-Jacqu=C3=A9?= Date: Wed, 17 Nov 2021 21:41:21 +0100 Subject: [PATCH] Please read me --- README.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..952face --- /dev/null +++ b/README.md @@ -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 +); +```