commit | ad92df70f978b9ed0891c404d62f6cab4a7b907b | [log] [tgz] |
---|---|---|
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | Mon Oct 12 20:30:49 2020 +0000 |
committer | Akron <nils@diewald-online.de> | Fri Nov 06 11:15:40 2020 +0100 |
tree | 6c55e2a5698271e5e0284b7465dca84f77017175 | |
parent | 78c4f3bcef08dce5e5b910756d8267a32073cc0c [diff] |
Bump junit from 4.12 to 4.13.1 Bumps [junit](https://github.com/junit-team/junit4) from 4.12 to 4.13.1. - [Release notes](https://github.com/junit-team/junit4/releases) - [Changelog](https://github.com/junit-team/junit4/blob/main/doc/ReleaseNotes4.12.md) - [Commits](https://github.com/junit-team/junit4/compare/r4.12...r4.13.1) Change-Id: Ibcc7cbd41ab742a508c7a2d08cc12bf3038c1714 Signed-off-by: dependabot[bot] <support@github.com>
KorapSRU is the CLARIN Federated Content Search (FCS) endpoint for KorAP. It implements FCS specifications and connects the CLARIN FCS client Aggregator and KorAP. Thus, public resources in KorAP are accessible from Aggregator through KorapSRU.
CLARIN defines FCS specifications to allow distributed search across multiple heterogenous search engines in a uniform way. FCS specifications are built on the SRU/CQL protocol for communications between its client and endpoint. FCS 1.0 specification supports SRU (Search Retrieve via URL) 1.2 and FCS 2.0 specification supports SRU 2.0.
KorapSRU 1.0.1 release implements FCS 1.0 specification and supports basic search using simple CQL (Contextual Query Language) for term query, phrase query and boolean query. FCS 2.0 specification is implemented in the newest version of KorapSRU, but it has not been released yet. It supports extended search (e.g. annotation search) that can be formulated using FCS Query Language (FCSQL) developed based on Corpus Query Processor (CQP). FCSQL is only available with SRU version 2.0, whilst CQL is available with SRU version 1.1, 1.2 and 2.0.
Usually CQL and FCSQL queries are translated into the native language of a search engine in an FCS endpoint. Since KorAP supports multiple query languages and has its own query translator Koral, the translation is implemented in Koral, not in KorapSRU. Therefore, KorAP users will also be able to use CQL and FCSQL.
gives general information about KorapSRU and some default search settings, for instance the number of records it retrieves per page. See:
To obtain more information such as supported annotation layers needed for requesting an extended search,
x-fcs-endpoint-description=true
must be added as an extra request parameter. See:
https://clarin.ids-mannheim.de/korapsru?operation=explain&x-fcs-endpoint-description=true
contains a CQL or FCSQL query. KorapSRU forwards the CQL or FCSQL query in an SRU search retrieve request URL to Kustvakt, the API provider of KorAP managing the communications among all KorAP components. Moreover, KorapSRU transforms the query results from Kustvakt into an SRU response.
Examples:
Searching for all occurrences of term Buch
(means book in German)
https://clarin.ids-mannheim.de/korapsru?operation=searchRetrieve&query=Buch&version=1.2
Searching for all lemmas from Tree tagger annotations containing heit
, in FCS query: [tt:lemma=".*heit"]
Java 7 (JDK 1.7 with JCE or OpenJDK 7)
Tomcat 7
Kustvakt
Configure the service URI in /src/main/webapp/WEB-INF/web.xml
to a Kustvakt server URI, for example:
<context-param> <param-name>korap.service.uri</param-name> <param-value>http://localhost:8089/api/</param-value> </context-param>
KorapSRU is built based on the FCSSimpleEndpoint library provided by CLARIN. KorapSRU 1.0.2-SNAPSHOT uses FCSSimpleEndpoint version 1.3.0 available from CLARIN Nexus repository. To allow Maven to download the library using JDK 1.7, an additional Java Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy Files 7 is needed.
To install a war file of KorapSRU, go to the root directory of the project and run
$ mvn install -Dhttps.protocols=TLS1.2
in a terminal.