mirror of
https://github.com/alanorth/cgspace-notes.git
synced 2024-11-19 05:07:03 +01:00
Update notes for 2017-08-18
This commit is contained in:
parent
a9b015a49a
commit
a33e816821
@ -290,5 +290,34 @@ dspace.log.2017-08-17:584
|
|||||||
- I wired it up to the `dc.subject` field of the submission interface using the "lookup" type and it works!
|
- I wired it up to the `dc.subject` field of the submission interface using the "lookup" type and it works!
|
||||||
- I think we can use this example to get a working AGROVOC query
|
- I think we can use this example to get a working AGROVOC query
|
||||||
- More information about authority framework: https://wiki.duraspace.org/display/DSPACE/Authority+Control+of+Metadata+Values
|
- More information about authority framework: https://wiki.duraspace.org/display/DSPACE/Authority+Control+of+Metadata+Values
|
||||||
|
- Wow, I'm playing with the AGROVOC SPARQL endpoint using the [sparql-query tool](https://github.com/tialaramex/sparql-query):
|
||||||
|
|
||||||
|
```
|
||||||
|
$ ./sparql-query http://202.45.139.84:10035/catalogs/fao/repositories/agrovoc
|
||||||
|
sparql$ PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
|
||||||
|
SELECT
|
||||||
|
?label
|
||||||
|
WHERE {
|
||||||
|
{ ?concept skos:altLabel ?label . } UNION { ?concept skos:prefLabel ?label . }
|
||||||
|
FILTER regex(str(?label), "^fish", "i") .
|
||||||
|
} LIMIT 10
|
||||||
|
|
||||||
|
┌───────────────────────┐
|
||||||
|
│ ?label │
|
||||||
|
├───────────────────────┤
|
||||||
|
│ fisheries legislation │
|
||||||
|
│ fishery legislation │
|
||||||
|
│ fishery law │
|
||||||
|
│ fish production │
|
||||||
|
│ fish farming │
|
||||||
|
│ fishing industry │
|
||||||
|
│ fisheries data │
|
||||||
|
│ fishing power │
|
||||||
|
│ fishing times │
|
||||||
|
│ fish passes │
|
||||||
|
└───────────────────────┘
|
||||||
|
```
|
||||||
|
|
||||||
|
- More examples about SPARQL syntax: https://github.com/rsinger/openlcsh/wiki/Sparql-Examples
|
||||||
- I found this blog post about speeding up the Tomcat startup time: http://skybert.net/java/improve-tomcat-startup-time/
|
- I found this blog post about speeding up the Tomcat startup time: http://skybert.net/java/improve-tomcat-startup-time/
|
||||||
- The startup time went from ~80s to 40s!
|
- The startup time went from ~80s to 40s!
|
||||||
|
@ -37,7 +37,7 @@ Then I cleaned up the author authorities and HTML characters in OpenRefine and s
|
|||||||
|
|
||||||
|
|
||||||
<meta property="article:published_time" content="2017-08-01T11:51:52+03:00"/>
|
<meta property="article:published_time" content="2017-08-01T11:51:52+03:00"/>
|
||||||
<meta property="article:modified_time" content="2017-08-17T11:43:00+03:00"/>
|
<meta property="article:modified_time" content="2017-08-18T18:21:00+03:00"/>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -85,9 +85,9 @@ Then I cleaned up the author authorities and HTML characters in OpenRefine and s
|
|||||||
"@type": "BlogPosting",
|
"@type": "BlogPosting",
|
||||||
"headline": "August, 2017",
|
"headline": "August, 2017",
|
||||||
"url": "https://alanorth.github.io/cgspace-notes/2017-08/",
|
"url": "https://alanorth.github.io/cgspace-notes/2017-08/",
|
||||||
"wordCount": "2943",
|
"wordCount": "3039",
|
||||||
"datePublished": "2017-08-01T11:51:52+03:00",
|
"datePublished": "2017-08-01T11:51:52+03:00",
|
||||||
"dateModified": "2017-08-17T11:43:00+03:00",
|
"dateModified": "2017-08-18T18:21:00+03:00",
|
||||||
"author": {
|
"author": {
|
||||||
"@type": "Person",
|
"@type": "Person",
|
||||||
"name": "Alan Orth"
|
"name": "Alan Orth"
|
||||||
@ -493,6 +493,36 @@ dspace.log.2017-08-17:584
|
|||||||
<li>I wired it up to the <code>dc.subject</code> field of the submission interface using the “lookup” type and it works!</li>
|
<li>I wired it up to the <code>dc.subject</code> field of the submission interface using the “lookup” type and it works!</li>
|
||||||
<li>I think we can use this example to get a working AGROVOC query</li>
|
<li>I think we can use this example to get a working AGROVOC query</li>
|
||||||
<li>More information about authority framework: <a href="https://wiki.duraspace.org/display/DSPACE/Authority+Control+of+Metadata+Values">https://wiki.duraspace.org/display/DSPACE/Authority+Control+of+Metadata+Values</a></li>
|
<li>More information about authority framework: <a href="https://wiki.duraspace.org/display/DSPACE/Authority+Control+of+Metadata+Values">https://wiki.duraspace.org/display/DSPACE/Authority+Control+of+Metadata+Values</a></li>
|
||||||
|
<li>Wow, I’m playing with the AGROVOC SPARQL endpoint using the <a href="https://github.com/tialaramex/sparql-query">sparql-query tool</a>:</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<pre><code>$ ./sparql-query http://202.45.139.84:10035/catalogs/fao/repositories/agrovoc
|
||||||
|
sparql$ PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
|
||||||
|
SELECT
|
||||||
|
?label
|
||||||
|
WHERE {
|
||||||
|
{ ?concept skos:altLabel ?label . } UNION { ?concept skos:prefLabel ?label . }
|
||||||
|
FILTER regex(str(?label), "^fish", "i") .
|
||||||
|
} LIMIT 10
|
||||||
|
|
||||||
|
┌───────────────────────┐
|
||||||
|
│ ?label │
|
||||||
|
├───────────────────────┤
|
||||||
|
│ fisheries legislation │
|
||||||
|
│ fishery legislation │
|
||||||
|
│ fishery law │
|
||||||
|
│ fish production │
|
||||||
|
│ fish farming │
|
||||||
|
│ fishing industry │
|
||||||
|
│ fisheries data │
|
||||||
|
│ fishing power │
|
||||||
|
│ fishing times │
|
||||||
|
│ fish passes │
|
||||||
|
└───────────────────────┘
|
||||||
|
</code></pre>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>More examples about SPARQL syntax: <a href="https://github.com/rsinger/openlcsh/wiki/Sparql-Examples">https://github.com/rsinger/openlcsh/wiki/Sparql-Examples</a></li>
|
||||||
<li>I found this blog post about speeding up the Tomcat startup time: <a href="http://skybert.net/java/improve-tomcat-startup-time/">http://skybert.net/java/improve-tomcat-startup-time/</a></li>
|
<li>I found this blog post about speeding up the Tomcat startup time: <a href="http://skybert.net/java/improve-tomcat-startup-time/">http://skybert.net/java/improve-tomcat-startup-time/</a></li>
|
||||||
<li>The startup time went from ~80s to 40s!</li>
|
<li>The startup time went from ~80s to 40s!</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://alanorth.github.io/cgspace-notes/2017-08/</loc>
|
<loc>https://alanorth.github.io/cgspace-notes/2017-08/</loc>
|
||||||
<lastmod>2017-08-17T11:43:00+03:00</lastmod>
|
<lastmod>2017-08-18T18:21:00+03:00</lastmod>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
<url>
|
<url>
|
||||||
@ -114,7 +114,7 @@
|
|||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://alanorth.github.io/cgspace-notes/</loc>
|
<loc>https://alanorth.github.io/cgspace-notes/</loc>
|
||||||
<lastmod>2017-08-17T11:43:00+03:00</lastmod>
|
<lastmod>2017-08-18T18:21:00+03:00</lastmod>
|
||||||
<priority>0</priority>
|
<priority>0</priority>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
@ -125,19 +125,19 @@
|
|||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://alanorth.github.io/cgspace-notes/tags/notes/</loc>
|
<loc>https://alanorth.github.io/cgspace-notes/tags/notes/</loc>
|
||||||
<lastmod>2017-08-17T11:43:00+03:00</lastmod>
|
<lastmod>2017-08-18T18:21:00+03:00</lastmod>
|
||||||
<priority>0</priority>
|
<priority>0</priority>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://alanorth.github.io/cgspace-notes/post/</loc>
|
<loc>https://alanorth.github.io/cgspace-notes/post/</loc>
|
||||||
<lastmod>2017-08-17T11:43:00+03:00</lastmod>
|
<lastmod>2017-08-18T18:21:00+03:00</lastmod>
|
||||||
<priority>0</priority>
|
<priority>0</priority>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://alanorth.github.io/cgspace-notes/tags/</loc>
|
<loc>https://alanorth.github.io/cgspace-notes/tags/</loc>
|
||||||
<lastmod>2017-08-17T11:43:00+03:00</lastmod>
|
<lastmod>2017-08-18T18:21:00+03:00</lastmod>
|
||||||
<priority>0</priority>
|
<priority>0</priority>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user