mirror of
https://github.com/ilri/dspace-statistics-api.git
synced 2024-11-24 23:30:18 +01:00
indexer.py: Rename index functions for items
Start making plans for indexing communities and collections.
This commit is contained in:
parent
787eec20ea
commit
b486f51dd7
@ -36,7 +36,7 @@ from .database import DatabaseManager
|
|||||||
from .util import get_statistics_shards
|
from .util import get_statistics_shards
|
||||||
|
|
||||||
|
|
||||||
def index_views():
|
def index_item_views():
|
||||||
# get total number of distinct facets for items with a minimum of 1 view,
|
# get total number of distinct facets for items with a minimum of 1 view,
|
||||||
# otherwise Solr returns all kinds of weird ids that are actually not in
|
# otherwise Solr returns all kinds of weird ids that are actually not in
|
||||||
# the database. Also, stats are expensive, but we need stats.calcdistinct
|
# the database. Also, stats are expensive, but we need stats.calcdistinct
|
||||||
@ -125,7 +125,7 @@ def index_views():
|
|||||||
results_current_page += 1
|
results_current_page += 1
|
||||||
|
|
||||||
|
|
||||||
def index_downloads():
|
def index_item_downloads():
|
||||||
# get the total number of distinct facets for items with at least 1 download
|
# get the total number of distinct facets for items with at least 1 download
|
||||||
solr_query_params = {
|
solr_query_params = {
|
||||||
"q": "type:0",
|
"q": "type:0",
|
||||||
@ -221,7 +221,7 @@ with DatabaseManager() as db:
|
|||||||
|
|
||||||
shards = get_statistics_shards()
|
shards = get_statistics_shards()
|
||||||
|
|
||||||
index_views()
|
index_item_views()
|
||||||
index_downloads()
|
index_item_downloads()
|
||||||
|
|
||||||
# vim: set sw=4 ts=4 expandtab:
|
# vim: set sw=4 ts=4 expandtab:
|
||||||
|
Loading…
Reference in New Issue
Block a user