Posts

Showing posts from February 24, 2019

Solr / Lucene - prefix query on strings that end in numeric value

Image
1 I'm noticing some behaviour that I can't explain in solr (version 7.5). I have two documents that each contain a field with a full path to a file. doc1: path: ["/home/kyle/filea.txt"] , doc2: path: ["/home/kyle/file1.txt"] If I issue a query: path:filea.* , doc1 is correctly returned. If I issue a query: path:file1* , doc2 is correctly returned. If I issue a query: path:"file1.*" , doc2 is correctly returned. If I issue a query: path:file1.* , doc2 is NOT returned. I have the default TokenizerChain on the Index Analyzer and the Query Analyzer, and the field is multi-valued. So my question: What is solr/lucene doing behind the scenes that causes the query for: <string><number>.* to not return the document I expect, when the other generic cases of: <string>.* (no trailing number), <string><number>* (no dot in query) "<string><number>.*" (query in quotes) all return what I th

Edgar Burgess

Image
Edgar Richard Burgess (* 23. September 1891 in Kensington, Großbritannien; † 23. April 1952 in Tanger) war ein britischer Ruderer. Burgess besuchte das Eton College und studierte danach am Magdalene College der Oxford University. Bei den Olympischen Spielen 1912 in Stockholm gewann er mit der Crew des Leander Club den Wettbewerb im Achter vor dem Boot des New College in Oxford. 1913 gewann er mit dem Achter der Oxford University das Boat Race, wobei im siegreichen Team aus Oxford sowohl Ruderer des Magdalene College als auch Ruderer des New College vertreten waren. Burgess wirkte später beim Sudan Political Service . Nach seiner Pensionierung blieb er in Afrika und lebte in Tanger. Literatur | Karl Lennartz: Die Spiele der V. Olympiade 1912 in Stockholm . Agon Sportverlag, Kassel 2009, ISBN 978-3-89784-364-6. Weblinks | Edgar Burgess in der Datenbank von Sports-Reference (englisch) .mw-parser-output div.NavFrameborder:1px solid #A2A9B1;clear:both;font-size:95%;margin-top:1.5em;min-

Configure UDP for Remote on Akka.net

Image
0 akka actor provider = remote remote dot-netty.tcp port = 8080 hostname = localhost Sample configuration for tcp and it works fine Any help on how to connect with UDP would be appreciated akka.net share | improve this question edited Nov 13 '18 at 23:31 Camilo Terevinto 18.7k 6 36 66 asked Nov 13 '18 at 23:08 Joshua Leigh Joshua Leigh 80 1 6 add a comment  |  0 akka actor provider = remote remote dot-netty.tcp port = 8080 hostname = localhost Sample configuration for tcp and it works fine Any help on how to connect with UDP would be appreciated akka.net share | improve this question edited Nov 13 '18 at 23:31 Camilo Terevinto 18.7k 6 36 66 asked Nov 13 '18 at 23:08 Joshua Leigh Joshua Leigh 80 1 6 add a comment  |  0 0 0 akka actor provider = remote remote dot-netty.tcp port = 8080 hostname =