unsubscribe not working

2017-01-12 Thread Mark Wharton
Hi Jena users. I've emailed users-unsubscr...@jena.apache.org two times now and I'm still subscribed. Can someone please un-subscribe me manually. Thanks -- Chief Technology Officer, Iotic Labs +44 7973 674404 mark.whar...@iotic-labs.com https://iotic-labs.com

Fuseki + Lucene special characters.

2016-03-19 Thread Mark Wharton
Hi Jena Users. We've been experiencing some peculiar behaviour with Jena/Fuseki and Lucene - particularly, but not entirely, around special characters. We are currently running Fuseki 2.3.0, which seems to include Lucene 4.9.1, as far as we can tell. Using the query: PREFIX text:

Re: Deleted triples still in the Lucene index?

2016-03-12 Thread Mark Wharton
jena-spatial. > > Now the functionality of each is clearer, what would be good is for > there to be a common framework with jena-text and jena-spatial sharing > as much as makes sense. > > Andy > > > On 11/03/16 10:21, Mark Wharton wrote: >> Hi Rob. >> >> That w

Re: Deleted triples still in the Lucene index?

2016-03-11 Thread Mark Wharton
index in order for it to > support deletions going forward > > Rob > > On 10/03/2016 14:11, "Mark Wharton" <mark.whar...@iotic-labs.com> wrote: > >> Hi >> >> Deleting triples still leaves them in the Lucene text search index. >> This leads

Deleted triples still in the Lucene index?

2016-03-10 Thread Mark Wharton
Hi Deleting triples still leaves them in the Lucene text search index. This leads to some questions 1) Is this expected behaviour? 2) If it's not, what did I do wrong? 3) If it is, do I have to re-run jena.textindexer again to keep it up-to-date? This is a pain, because I have to stop fuseki in

Re: Query with spatial *and* text searches.

2015-12-27 Thread Mark Wharton
7973 674404 mark.whar...@iotic-labs.com https://www.iotic-labs.com On 24/12/15 05:38, Mark Wharton wrote: > Hi Andy. > > That's cracked it. I was wondering about the sub-select route, but > wasn't sure how to code the intersection part. I just tweaked it to > return the score from

Re: Query with spatial *and* text searches.

2015-12-23 Thread Mark Wharton
?ent rdfs:label ?entLabel . > FILTER langMatches( lang(?entLabel), 'en' ) . > } > > OPTIONAL {?ent geo:lat ?lat . ?ent geo:long ?long} > ?ent iotic:Advertises ?point . > ?point rdf:type iotic:Point . > ?point iotic:PointType ?pointType . > > OPTIONAL

Re: Query with spatial *and* text searches.

2015-12-23 Thread Mark Wharton
bs.com On 22/12/15 17:22, Andy Seaborne wrote: > Mark, > > Thanks for the experiment results. > > On 22/12/15 15:47, Mark Wharton wrote: >> Query below run without Andy's switches. >> INFO [5] 200 OK (4.985 s) >> >> Query below run with Andy's switches.

Re: Query with spatial *and* text searches.

2015-12-22 Thread Mark Wharton
q:optIndexJoinStrategy=false --set arq:optMergeBGPs=false .. other > args .. > > you'll need to put the full path name of fuseki-server.jar > > Sorry - I don't have your setup to test this fully. I did make sure that > the reworked query does lead to an execution plan that is differen

Re: Query with spatial *and* text searches.

2015-12-21 Thread Mark Wharton
ype iotic:Entity . > } > > 3. Combination of above ideas > > SELECT ?score ?ent > WHERE { > { ?ent spatial:nearby(51.507999420166016 -0.1099940395355 > 70.01807880401611 'km') } > { (?ent2 ?score) text:query ('environment' 'lang:en') } > FILTER (?ent = ?ent2) > ?

Re: Query with spatial *and* text searches.

2015-12-20 Thread Mark Wharton
-index project. > >http://mail-archives.apache.org/mod_mbox/jena-dev/201505.mbox/%3ccaptxtvpwu2ijogyj0kx8o6-07yokk5g1t32b_k3g_cjaqvk...@mail.gmail.com%3E > >On Sun, Dec 20, 2015 at 2:29 AM, Mark Wharton ><mark.whar...@iotic-labs.com> wrote: >> Hi >> >> Thanks for t

Re: Query with spatial *and* text searches.

2015-12-19 Thread Mark Wharton
access method latency in paticular for small > data sets. you can try a mbr range query instead. > > see Chapter 13 Managing Space and Time in Semantic Web Programming by > John Hebeler et. al.. 2009 > > On Fri, Dec 18, 2015 at 10:13 AM, Mark Wharton > <mark.whar...@iotic-labs.co

Query with spatial *and* text searches.

2015-12-18 Thread Mark Wharton
Hi Jena users. I'm having performance problems with a query that uses text and location search The query is roughly this: SELECT ?score ?ent WHERE { ?ent spatial:nearby(51.507999420166016 -0.1099940395355 70.01807880401611 'km') . (?ent ?score) text:query

Splitting a fuseki1 config file into services for fuseki2

2015-11-09 Thread Mark Wharton
Hi Jena I run fuseki as a service and I've just migrated to Fuseki 2, but kept my config file as it was. I've just been trying to do what the docs suggest, i.e. to separate it out into a file per service. I quote: "To convert a Fuseki 1 configuration setup to Fuseki 2 style, move each data

Spatial and Text indexes with Lucene - either, but not both?

2015-09-09 Thread Mark Wharton
Hi Jena team. I'm trying to get both the text and spatial indexes to work on my TDB store using jena 1.1.0 (and 1.1.1). I can get one or the other to work, but not both at the same time. Can you help? I based by config with the example here: