Hi All I've got about 30k terms that I wanna get dbpedia, da.wikipedia.org and en.wikipedia.org URI's for.
Right now I'm doing this sparql against dbpedia.org/sparql : prefix foaf: <http://xmlns.com/foaf/0.1/> prefix vcard: <http://www.w3.org/2001/vcard-rdf/3.0#> SELECT * WHERE { $uri ?p ?s FILTER ( (?p = rdfs:label && ?s = 'Johannes Wehner'@da) || (?p = rdfs:label && ?s = 'Johannes Wehner'@en) || (?p = foaf:name && ?s = 'Johannes Wehner') || (?p = vcard:FN && ?s = 'Johannes Wehner'@en) ) } I get it in xml-format and i parse it. It sorta works, but it takes forever. What should I do? Should do it locally? Or can I speed it in another way? Besides time a big concern is danish results. I've tried using http://dbpedia-live.openlinksw.com/sparql , but it times out on me. Let me know if you have any ideas on that as well. Have a nice friday! Best, /Johs. ------------------------------------------------------------------------------ Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel performance. See why Intel Parallel Studio got high marks during beta. http://p.sf.net/sfu/intel-sw-dev _______________________________________________ Dbpedia-discussion mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/dbpedia-discussion
