Re: JSON Facet & Analytics API in Solr 5.1

2015-04-18 Thread Lukáš Vlček
any non-trivial JSON based language format now is to make sure it is parser friendly and grammars can be defined easily for it. On Sun, Apr 19, 2015 at 8:09 AM, Lukáš Vlček wrote: > Late here but let me add one more thing: IIRC the recommendation for JSON > is to never use data as a

Re: JSON Facet & Analytics API in Solr 5.1

2015-04-18 Thread Lukáš Vlček
Late here but let me add one more thing: IIRC the recommendation for JSON is to never use data as a key in objects. One of the benefits of not using data as a keys in JSON is easier validation using JSON schema. If one wants to validate JSON query for Elasticsearch today it is necessary to implemen

Re: New UI for SOLR-based projects

2015-01-30 Thread Lukáš Vlček
Nice work Roman! Lukas On Sat, Jan 31, 2015 at 4:36 AM, Roman Chyla wrote: > I gather from your comment that I should update readme, because there could > be people who would be inclined to use bumblebee development server in > production: Beware those who enter through this gate! :-) > > Your

Re: Czech stemmer

2014-09-09 Thread Lukáš Vlček
Hi, I would recommend you to look at stemmer or token filter based on Hunspell dictionaries. I am not a Solr user so I can not point you to appropriate documentation about this but Czech dictionary that can be used with Hunspell is of high quality. It can be downloaded from OpenOffice here http://

Re: Solr logo for print

2012-04-30 Thread Lukáš Vlček
Otis, I think there was some JIRA ticket (Logo contents or something like that) which might have all the logo proposals, including the winning one, attached. Regards, Lukas On Mon, Apr 30, 2012 at 9:38 PM, Otis Gospodnetic < otis_gospodne...@yahoo.com> wrote: > Hi, > > I'm trying to find a Solr

Re: Options for automagically Scaling Solr (without needing distributed index/replication) in a Hadoop environment

2012-04-18 Thread Lukáš Vlček
ndled as a new shard is added > to an alias. Eg, how does the system know to which shard to send an > update? > > On Tue, Apr 17, 2012 at 4:00 PM, Lukáš Vlček > wrote: > > Hi, > > > > speaking about ES I think it would be fair to mention that one has to > &g

Re: Options for automagically Scaling Solr (without needing distributed index/replication) in a Hadoop environment

2012-04-17 Thread Lukáš Vlček
Hi, speaking about ES I think it would be fair to mention that one has to specify number of shards upfront when the index is created - that is correct, however, it is possible to give index one or more aliases which basically means that you can add new indices on the fly and give them same alias w

Re: hierarchical synonym

2011-10-21 Thread Lukáš Vlček
Hi, I think what you are looking for are synonym rules like this: dog, cat, bird => animal I think the following link can be interesting to you as well: http://wisdombase.net/wiki/index.php?title=Hiearchy_synonym_search_solution_in_solr I am not a Solr expert but speaking about Lucene synonyms

Re: [ANNOUNCE] Web Crawler

2011-03-02 Thread Lukáš Vlček
Hi, is there any plan to open source it? Regards, Lukas [OT] I tried HuriSearch, input "Java" into search field, it returned a lot of references to coldfusion error pages. May be a recrawl would help? On Wed, Mar 2, 2011 at 1:25 AM, Dominique Bejean wrote: > Hi, > > I would like to announce Cr

Re: Need Middleware between search client and solr?

2010-11-23 Thread Lukáš Vlček
Hello, is the twigkit open sourced? Looks interesting. Regards, Lukas On Tue, Nov 23, 2010 at 2:13 PM, Jan Høydahl / Cominvent < jan@cominvent.com> wrote: > Check out for instance www.twigkit.com which is a light-weight middleware > (as well as GUI framework) for Solr. It could speed up dev

Re: Sites with Innovative Presentation of Tags and Facets

2010-05-28 Thread Lukáš Vlček
On Fri, May 28, 2010 at 11:39 PM, Lukáš Vlček wrote: > > > On Fri, May 28, 2010 at 9:49 PM, Chris Hostetter > wrote: > >> >> : > Years ago, when we were first working on building Solr, a coworker of >> mind >> : > suggested using double bar sliders (

Re: Sites with Innovative Presentation of Tags and Facets

2010-05-28 Thread Lukáš Vlček
On Fri, May 28, 2010 at 9:49 PM, Chris Hostetter wrote: > > : > Years ago, when we were first working on building Solr, a coworker of > mind > : > suggested using double bar sliders (ie: pick a range using a min and a > : > max) for all numeric facets and putting "sparklines" above them to give >

Re: Jetty, Tomcat or JBoss?

2010-04-17 Thread Lukáš Vlček
Hi, may be you should be aware that JBoss AS is using Tomcat for web container (with modified classloader), so if your web application is running inside JBoss AS then it is in fact running in Tomcat. I don't think Solr uses JEE technologies provided by JEE Application server (JMS, Transaction serv

Re: Features not present in Solr

2010-03-22 Thread Lukáš Vlček
Hmm... sounds pretty much like what this book should be about (once finished): http://www.manning.com/ingersoll/ On Mon, Mar 22, 2010 at 8:46 PM, Lance Norskog wrote: > About Text Analysis: "Natural Language Processing" is the more usual > term. Finding parts of speech, isolating people's names,

Re: Features not present in Solr

2010-03-22 Thread Lukáš Vlček
On Mon, Mar 22, 2010 at 8:16 PM, Lance Norskog wrote: > Web crawling. > Nutch, Lucene Conectors Framework... would it help to include this directly into Solr code base? > Text analysis. > Under development I think, see Mahout (check some proposed GSoC tickets in JIRA) > Distributed index ma

Re: Will Solr fit our needs?

2010-03-18 Thread Lukáš Vlček
On Thu, Mar 18, 2010 at 8:45 AM, Moritz Maedler wrote: > Hi guys! > > Thanks alot for your suggestions and help - I really appreciate that! > As we need e.g. the the price for sorting I think it must be in the index? > Thus, I'm not shure that a key-value-store is the thing we are looking for > as

Re: Will Solr fit our needs?

2010-03-17 Thread Lukáš Vlček
scalable in-memory hash map with journal based backup would do this job better I think. Just my 2 cents. Regards, Lukas On Wed, Mar 17, 2010 at 10:36 AM, Lukáš Vlček wrote: > Hi, > > Solr is running on top of Lucene and as far as I know Lucene knows only one > approach how to update

Re: Will Solr fit our needs?

2010-03-17 Thread Lukáš Vlček
Hi, Solr is running on top of Lucene and as far as I know Lucene knows only one approach how to update the document field content: that is delete first and then (re)index with new values. However, saying this it does not mean you can not implement what you need. Take a look at ParallelReader API h

Re: Extracting content from mailman managed mail list archive

2010-03-08 Thread Lukáš Vlček
, Lukáš Vlček wrote: > Hi, > > is anybody willing to share experience about how to extract content from > mailing list archives in order to have it indexed by Lucene or Solr? > > Imagine that we have access to archive of some mailling list (e.g. > http://www.mail-archive.com/mailm

Extracting content from mailman managed mail list archive

2010-03-08 Thread Lukáš Vlček
Hi, is anybody willing to share experience about how to extract content from mailing list archives in order to have it indexed by Lucene or Solr? Imagine that we have access to archive of some mailling list (e.g. http://www.mail-archive.com/mailman-users%40python.org/) and we would like to index

Re: Solr integration with document management systems

2010-02-07 Thread Lukáš Vlček
The good news is that there is a new Apache project starting incubation: Lucene Connector Framework This might be something useful in your case (although as of writing no code available). You can read more info here: http://www.lucidimagination.com/blog/2010/01/20/apache-lucene-connector-framework-

Re: Contributors - Solr in Action Case Studies

2010-02-02 Thread Lukáš Vlček
This would be very welcome! I am interested in this particular use case. In other words: if the book will contain this use case then you can count with me buying this book! :-) Regards, Lukas On Tue, Feb 2, 2010 at 2:49 PM, Grant Ingersoll wrote: > I'd be happy to contribute how we use Solr to

Re: Solr vs. Compass

2010-01-21 Thread Lukáš Vlček
Hi, I think that these products do not compete directly that much, each fit different business case. Can you tell us more about our specific situation? What do you need to search and where your data is? (DB, Filesystem, Web ...?) Solr provides some specific extensions which are not supported dire

Re: Google Commerce Search

2010-01-17 Thread Lukáš Vlček
BTW: If you are looking for somebody to help you with Solr then you can check the following wiki page: http://wiki.apache.org/solr/Support Rgds, Lukas On Sun, Jan 17, 2010 at 9:03 PM, Pradeep Pujari wrote: > Yes, all the points you mentioned can be easily done in Solr. > > Pradeep > > On Sun, Ja

Re: Migrating to Solr

2009-11-24 Thread Lukáš Vlček
Hi, I think there were some links about FAST to Solr migration published recently. See: http://blog.isabel-drost.de/index.php/archives/110/moving-from-fast-to-solr However, as of writing those links are not working, not sure what happend... Regards, Lukas On Tue, Nov 24, 2009 at 2:55 PM, Tommy

Re: Arguments for Solr implementation at public web site

2009-11-13 Thread Lukáš Vlček
m and use its search capability Regards, Lukas On Fri, Nov 13, 2009 at 11:50 AM, Andrew Clegg wrote: > > > Lukáš Vlček wrote: > > > > I am looking for good arguments to justify implementation a search for > > sites > > which are available on the public internet

Re: 50% discount on "Taming Text" , "Lucene in Action", etc

2009-09-14 Thread Lukáš Vlček
Hi, I can confirm it works! :-) Regards, Lukas On Mon, Sep 14, 2009 at 10:20 PM, Fuad Efendi wrote: > > Yes, 2nd edition; but subscription-based "Manning Early Access Program" > (MEAP) is available, $13.75 (today only...), plus Author Online: > http://www.manning-sandbox.com/forum.jspa?forumID

Re: Netbeans and Solr : Whac-A-Mole

2009-09-07 Thread Lukáš Vlček
Shalin, do you think you can share more details about your IDEA setup for Solr testing? I am still having some issues with some tests (not all tests can find solr configuration files). Best regards, Lukas On Mon, Sep 7, 2009 at 2:35 PM, Shalin Shekhar Mangar < shalinman...@gmail.com> wrote: > O

Re: [OT] Solr Webinar

2009-08-13 Thread Lukáš Vlček
Hello, they [Lucid Imagination guys] said it should be published on their blog. I hope I understood it correctly. Regards, Lukas http://blog.lukas-vlcek.com/ On Fri, Aug 14, 2009 at 7:52 AM, Mani Kumar wrote: > if anyone has any pointer to this webinar, please share it. > thanks! > mani > > On

Re: Lucene/Solr Meetup / May 20th, Reston VA, 6-8:30 pm

2009-05-05 Thread Lukáš Vlček
Hello,any plans to upload these presentations on the web (or even better release video recordings)? Lukas On Tue, May 5, 2009 at 6:49 PM, Erik Hatcher wrote: > Lucene/Solr Meetup / May 20th, Reston VA, 6-8:30 pm > http://www.meetup.com/NOVA-Lucene-Solr-Meetup/ > > Join us for an evening of presen

Re: Stemming in Solr

2009-03-04 Thread Lukáš Vlček
May be you can also check http://wiki.apache.org/solr/AnalyzersTokenizersTokenFiltersStemming is discussed there... On Wed, Mar 4, 2009 at 1:18 PM, Lukáš Vlček wrote: > Hi, > did you check Snowball stemmers (http://snowball.tartarus.org/)? > > Regards, > Lukas > > > On

Re: Stemming in Solr

2009-03-04 Thread Lukáš Vlček
Hi, did you check Snowball stemmers (http://snowball.tartarus.org/)? Regards, Lukas On Wed, Mar 4, 2009 at 1:12 PM, dabboo wrote: > > Hi, > > I am trying to implement stemming in solr. If user searches for walk then > all the records which have walk, walking, walks, walked etc should display. >

Re: [ANNOUNCE] Solr Logo Contest Results

2008-12-18 Thread Lukáš Vlček
Congratulations Michiel.Lukas On Thu, Dec 18, 2008 at 3:44 AM, Matt Mitchell wrote: > Love it! Congratulations Michiel. > > Matt > > On Wed, Dec 17, 2008 at 9:15 PM, Chris Hostetter > wrote: > > > (replies to solr-user please) > > > > On behalf of the Solr Committers, I'm happy to announce that

Re: Solr Logo thought

2008-09-05 Thread Lukáš Vlček
Hi, 99designs might be an interesting option. On the other hand I am not sure their process is optimal for Solr case: 1) the one who calls the contest is the one who rates individual pieces (that is how I understand it). How exactly this is done I don't know.

Re: Solr Logo thought

2008-08-28 Thread Lukáš Vlček
gt; > 2008/8/20 Lukáš Vlček <[EMAIL PROTECTED]> > > > Hi, > > > > Only few responded so far. How we can get more feedback? Do you think I > > should work on the proposal a little bit more and then attach it to > > SOLR-84? > > > > Regards

Re: Solr Logo thought

2008-08-21 Thread Lukáš Vlček
it looks like an eye which suits > in with the search. > Good stuff. > -Nick > On 8/21/08, Lukáš Vlček <[EMAIL PROTECTED]> wrote: > > Hi, > > > > Well, the eye looking O is not intentional. It is more a result of the > > techique I used when doing

Re: Solr Logo thought

2008-08-20 Thread Lukáš Vlček
/ a grain of salt, though, there's a reason why I do server-side code >>> and not user interfaces and graphic design. :-) >>> >>> -Grant >>> >>> On Aug 20, 2008, at 3:48 AM, Lukáš Vlček wrote: >>> >>> Hi, >>>> >>>> On

Re: Solr Logo thought

2008-08-20 Thread Lukáš Vlček
t is the Sun. Take >> that w/ a grain of salt, though, there's a reason why I do server-side code >> and not user interfaces and graphic design. :-) >> >> -Grant >> >> On Aug 20, 2008, at 3:48 AM, Lukáš Vlček wrote: >> >> Hi, >>> >>&g

Re: Solr Logo thought

2008-08-20 Thread Lukáš Vlček
gt; > > Otis > -- > Sematext -- http://sematext.com/ -- Lucene - Solr - Nutch > > > > ----- Original Message > > From: Lukáš Vlček <[EMAIL PROTECTED]> > > To: solr-user@lucene.apache.org > > Sent: Sunday, August 17, 2008 7:02:25 PM > > Subj

Re: Solr Logo thought

2008-08-17 Thread Lukáš Vlček
Hi, My initial draft of Solr logo can be found here: http://picasaweb.google.com/lukas.vlcek/Solr The reason why I haven't attached it to SOLR-84 for now is that this is just draft and not final design (there are a lot of unfinished details). I would like to get some feedback before I spend more t

Re: Solr Logo thought

2008-08-08 Thread Lukáš Vlček
Hoss, thanks for comprehensive history tour. As for the sun motive I like it and think it is a strong one (strong enough to be the only leading motive in the logo) but I didn't want to insist on it without knowing that the community calls for it (especially I like to idea that the logo or favicon

Re: Solr Logo thought

2008-08-05 Thread Lukáš Vlček
Hi, I would like to give it a shot. Are there any solr logo success criteria/requirements? Any hints or suggestions from community is welcomed. Just close your eyes, start dreaming and send my couple of words about what you see... I am all ears. Also I found that the wiki mentions some genesis

Re: Solr Logo thought

2008-08-04 Thread Lukáš Vlček
Hi, Either I didn't get the BCc email or it ended in trash folder (gmail spam filter?) without me noticing it. If there is a still room for new log design for Solr and the community is open for it then I can try to come up with some proposal. Doing logo for Mahout was really interesting experience