简体   繁体   English

如何在DSPace 6的Collection中包括项目的统计信息?

[英]How to include item's statistics in Collection on DSPace 6?

I have a collection with 15 documents, manually I added the views of each items anfd the total was 23.000~ but when I view the statistics of the colecction I get 3.200~. 我有一个包含15个文档的集合,手动添加了每个项目的视图,总和为23.000〜,但是当我查看收藏的统计信息时,我得到了3.200〜。 When viewing the statistics of a collection in DSpace 6 I only get the views the collection has gotten but it doesn't add the views the items of that collection has gotten. 在DSpace 6中查看集合的统计信息时,我只会看到该集合已获得的视图,但不会添加该集合的各项已获得的视图。

How can I add each item's statistics into the collection? 如何将每个项目的统计信息添加到集合中?

The DSpace Usage Statistics for a Collection or Community only display views of the Collection or Community landing page. 集合或社区的DSpace使用情况统计信息仅显示集合或社区登录页面的视图。 The total item views are not displayed in the user interface. 总项目视图未显示在用户界面中。

The question can be answered by querying the Solr repository within DSpace. 可以通过查询DSpace中的Solr存储库来回答该问题。 We have built an internal reporting tool that computes these usage numbers. 我们建立了一个内部报告工具来计算这些使用次数。

All item views 所有项目视图

type:2

All item views for a collection 集合的所有项目视图

You can get the item uuid from the database or from the url of the item edit page. 您可以从数据库或项目编辑页面的URL中获取项目uuid。

q=type:2 AND owningColl:59f3a497-9e82-4100-ba9a-e00cff04ec43

All item views for a community 社区的所有项目视图

q=type:2 AND owningComm:59f3a497-9e82-4100-ba9a-e00cff04ec43

All item views for a community for the last 12 months 过去12个月内社区的所有项目视图

q=type:2 AND owningComm:59f3a497-9e82-4100-ba9a-e00cff04ec43
facet.date=time
facet.date.start=NOW/MONTH/DAY-12MONTHS
facet.date.end=NOW/MONTH/DAY+1MONTH
facet.date.gap=+1MONTH

More information 更多信息

I have a tutorial on using Solr with DSpace here: https://github.com/terrywbrady/TutorialSolrAdmin 我在这里有一个关于将Solr与DSpace结合使用的教程: https : //github.com/terrywbrady/TutorialSolrAdmin

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM