gbv / subjects-api

JSKOS Concept Occurrences Provider implementation
https://coli-conc.gbv.de/subjects/
MIT License
0 stars 0 forks source link

Get most used concepts #46

Open nichtich opened 1 year ago

nichtich commented 1 year ago

Most used concepts are interesting to get. Via command line from the data dumps:

zcat kxp-subjects.tsv.gz | awk '$2=="bk" {print $3}' | sort | uniq -c | sort -nrk1 > bk-count.txt

A live query to the backend probably takes to long but could be cached.