diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2021-06-10 16:35:32 +0200 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2021-06-10 16:35:32 +0200 |
commit | ea54e8231c9f6f4f3116b3b9a60074c3229257d6 (patch) | |
tree | 965d210a3429aacf34cc3f63079607b1c7a3f981 | |
parent | 895765ffa6ca34b9cb08dd0bb76e43efecde80bd (diff) | |
download | refcat-ea54e8231c9f6f4f3116b3b9a60074c3229257d6.tar.gz refcat-ea54e8231c9f6f4f3116b3b9a60074c3229257d6.zip |
tasks: perf data points
-rw-r--r-- | python/refcat/tasks.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/refcat/tasks.py b/python/refcat/tasks.py index 234fc11..362f61b 100644 --- a/python/refcat/tasks.py +++ b/python/refcat/tasks.py @@ -1228,7 +1228,7 @@ class Bref(Refcat): class BrefSortedByWorkID(Refcat): """ - Sort by work id. + Sort by work id. 237m45.094s. """ def requires(self): return Bref() @@ -1250,7 +1250,7 @@ class BrefSortedByWorkID(Refcat): class RefsByWorkID(Refcat): """ Key raw refs by work id. Since data is already sorted by work id, this can - skip the sorting step. + skip the sorting step. 174m13.837s (~170K extractions/s). """ def requires(self): return Refs() |