バージョン 9 から バージョン 10 における更新: ADERIS
- 更新日時:
- 2014/12/25 17:07:46 (10 年 前)
凡例:
- 変更なし
- 追加
- 削除
- 変更
-
ADERIS
v9 v10 21 21 Result: 22 22 23 query1: results:zero. 24 23 25 ||Query\time(ms) ||time 1 || time 2 || time 3 ||time 4||time 5 || 24 ||case1 || 27010|| 0||0||0|| 0||26 ||case1 || 27010||25249||25710||25481|| 26147|| 25 27 26 28 27 29 28 30 * Analysis: 31 32 {{{ 29 33 1. When doing queries, ADERIS firstly queries each data sources using SPARQL to find out the 30 34 number of distinct predicate values(Data about subjects/objects not retrieved.) 31 select distinct ?p where { ?s ?p ?o };32 select count(?p) where { ?s ?p ?o };33 35 34 potential consequences: 35 Without using caches and any metadata information pre-fetched, the system query each endpoint in real time, 36 which could take a long time, especially, when the number of endpoints increases. 36 select distinct ?p where { ?s ?p ?o }; 37 select count(?p) where { ?s ?p ?o }; 37 38 38 2. 39 '''potential consequences:''' 40 41 Without using caches and any metadata information pre-fetched, the system query each endpoint in real time, 42 which could take a long time, especially, when the number of endpoints increases. 43 44 }}} 39 45 40 46