Free live video streaming of ApacheCon US 2009

2009-11-04 Thread Michael McCandless
Team, For those Lucene fanatics not in Oakland this week for ApacheCon US, don't miss the FREE live video streaming, starting today: http://streaming.linux-magazin.de/en/program-apachecon-us-2009.htm Note that there are many talks available, covering Apache Hadoop, Apache HTTPD, Lucen

Re: ApacheCon US - Lucene Meetup?!

2009-08-25 Thread Chris Hostetter
: I'm curious if there is a meetup this year @ ApacheCon US similar to : the one at ApacheCon Europe earlier this year? There's one on the schedule for tuesday night... http://wiki.apache.org/apachecon/ApacheMeetupsUs09 I'v updated the Lucene wiki page about apachecon (orriginal

Re: ApacheCon US - Lucene Meetup?!

2009-08-25 Thread Simon Willnauer
nauer wrote: > >> I'm curious if there is a meetup this year @ ApacheCon US similar to >> the one at ApacheCon Europe earlier this year? >> >> Simon >> >> - >> To unsubscribe,

Re: ApacheCon US - Lucene Meetup?!

2009-08-25 Thread Erik Hatcher
not really. Many folks from Lucid will be in town for the conference as well, Grant, myself for sure. Erik On Aug 25, 2009, at 4:03 PM, Simon Willnauer wrote: I'm curious if there is a meetup this year @ ApacheCon US similar to the one at ApacheCon Europe earlier th

ApacheCon US - Lucene Meetup?!

2009-08-25 Thread Simon Willnauer
I'm curious if there is a meetup this year @ ApacheCon US similar to the one at ApacheCon Europe earlier this year? Simon - To unsubscribe, e-mail: java-dev-unsubscr...@lucene.apache.org For additional commands, e-mail: jav

Re: [ApacheCon US] Travel Assistance

2009-07-22 Thread Chris Hostetter
: Is the assistance restricted to people presenting and committers? nope... http://www.apache.org/travel/index.html -Hoss - To unsubscribe, e-mail: java-dev-unsubscr...@lucene.apache.org For additional commands, e-ma

Re: [ApacheCon US] Travel Assistance

2009-07-22 Thread Luis Alves
Hi Grant, I'm locate in the Bay Area, so I don't need hotel or car and I could drive to Oakland, but I was not able to get my company to pay for a apachecon conference Pass. I also wouldn't mind to do a presentation on the new QueryParser (JIRA 1567), if I'm able to get t

[ApacheCon US] Travel Assistance

2009-07-22 Thread Grant Ingersoll
The Travel Assistance Committee is taking in applications for those wanting to attend ApacheCon US 2009 (Oakland) which takes place between the 2nd and 6th November 2009. The Travel Assistance Committee is looking for people who would like to be able to attend ApacheCon US 2009 who may

Registration for ApacheCon Europe 2009 is now open!

2009-01-29 Thread Erik Hatcher
Apache Lucene (Michael Busch) And a whole slew of Hadoop/cloud coverage. Erik -- ApacheCon EU 2009 registration is now open! 23-27 March -- Mövenpick Hotel, Amsterdam, Netherlands http://www.eu.apachecon.com/ Registration for ApacheCon Europe 2009 is

ApacheCon 2009 EU

2009-01-28 Thread Uwe Schindler
Hi, Who will be at ApacheCon in Amsterdam this year (besides official speakers Erik, Grant, and Michael Busch)? I will try to be there during the conference sessions. Uwe - Uwe Schindler H.-H.-Meier-Allee 63, D-28213 Bremen http://www.thetaphi.de eMail: u...@thetaphi.de

Fwd: [Travel Assistance] Applications for ApacheCon EU 2009 - Now Open

2009-01-23 Thread Erik Hatcher
Begin forwarded message: From: Tony Stevenson Date: January 23, 2009 8:28:19 AM EST To: travel-assista...@apache.org Subject: [Travel Assistance] Applications for ApacheCon EU 2009 - Now Open The Travel Assistance Committee is now accepting applications for those wanting to attend

ApacheCon Europe BoF for Lucene/Nutch/Solr

2008-02-03 Thread Grant Ingersoll
If you are planning on going to ApacheCon Europe, you might be interested in joining some fellow Lucene/Solr/Nutch people at the BoF: http://wiki.apache.org/apachecon/BirdsOfaFeatherEu08 Just note your interest in the "Interested People Counter" section. Also note, there are sev

Re: Various Ideas from ApacheCon

2007-05-10 Thread J. Delgado
The ever growing presence of mingled structured and unstructured data is a fact of life and modern systems we have to deal with. Clearly, the tendency is that full-text indexing is moving towards DB functionality, i.e. fields for projection/filtering, sorting, faceted queries, transactional CRUD

Re: Various Ideas from ApacheCon

2007-05-09 Thread James liu
I think the topest thing lucene/solr should do: 1: more easy use and less code 2: distributed index and search 3: manage these index and search server 4: test method or tool i don't agree 2007/5/8, Grant Ingersoll <[EMAIL PROTECTED]>:Yep, my advice always is use a db for what a db is designed fo

Re: Various Ideas from ApacheCon

2007-05-08 Thread Doron Cohen
> : If the user is savvy enough to 'rebuild' their documents from an > : external source, then the fields do not need to be stored (just the > : OID field for convenience). > > it's this rebuilding that people tend to dislike about the delete/re-add > process that's currently neccessary to "update"

Re: Various Ideas from ApacheCon

2007-05-08 Thread Grant Ingersoll
I agree with you characterization. We love the speed and performance of Lucene, but the updating process just doesn't feel right in that context. I think the common use case that comes to mind is tagging a document. Every time a doc gets tagged, you have to rebuild it, or manage multip

Re: Various Ideas from ApacheCon

2007-05-07 Thread Chris Hostetter
: I am not sure I agree with that. i don't think i understand what part you don't agree with :) : Document management systems are quite common these days, and people : are used to "checking out" a document, making changes, and checking : the entire document back in. : : In many ways Lucene can b

Re: Various Ideas from ApacheCon

2007-05-07 Thread robert engels
I am not sure I agree with that. Document management systems are quite common these days, and people are used to "checking out" a document, making changes, and checking the entire document back in. In many ways Lucene can be viewed as a self-contained document mngt system if you store eve

Re: Various Ideas from ApacheCon

2007-05-07 Thread Chris Hostetter
: Yep, my advice always is use a db for what a db is designed for (set : manipulation) and use Lucene for what it is good for, but some people careful how you word that advice ... Solr's first use case was faceted browsing because using Lucene to generate BitSets and computing the intersection co

Re: Various Ideas from ApacheCon

2007-05-07 Thread Chris Hostetter
: I think the 'updating documents' issue is almost always related to : unique document updates, where there exists some "primary unique key" : for the document. Is this true? : if so, it would be easy to add the following to IndexModifer: : : addDocument(Document) : updateDocument(Document) the

Re: Various Ideas from ApacheCon

2007-05-07 Thread Grant Ingersoll
Yep, my advice always is use a db for what a db is designed for (set manipulation) and use Lucene for what it is good for, but some people were commenting that DB text search is improving in terms of quality. I could see that if flex. indexing gets implemented, that we could implement other

Re: Various Ideas from ApacheCon

2007-05-07 Thread Ian Holsman
Grant Ingersoll wrote: 2. How does Lucene search compare w/ using built in DB search? Has anyone done a study comparing Lucene performance/quality to the likes of MySQL/Postgres/Oracle? Related question is always on how to integrate the two. Hi Grant. when we initially investigated using

Re: Various Ideas from ApacheCon

2007-05-07 Thread robert engels
May 7, 2007, at 5:25 PM, Grant Ingersoll wrote: Hey Gang, Back from ApacheCon in Amsterdam, and thought I would give a bit of a report on a few things that were interesting related to Lucene. First off, there was a very high level of interest in Lucene and Solr, which was great to see.

Various Ideas from ApacheCon

2007-05-07 Thread Grant Ingersoll
Hey Gang, Back from ApacheCon in Amsterdam, and thought I would give a bit of a report on a few things that were interesting related to Lucene. First off, there was a very high level of interest in Lucene and Solr, which was great to see. In doing a training and a talk, couple of things

Fwd: Call for Papers Opens for ApacheCon US 2007

2007-04-16 Thread Erik Hatcher
The one valid use of cross-posting... Begin forwarded message: From: Rich Bowen <[EMAIL PROTECTED]> Date: April 16, 2007 10:50:54 AM EDT To: [EMAIL PROTECTED] Subject: Call for Papers Opens for ApacheCon US 2007 Reply-To: [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] PMCs, please sen

ApacheCon

2007-03-23 Thread karl wettin
Although I will not attend the actual convention (unless I figure out a way to pay for just that one seminar about Hadoop I'd really like to see) I'll be in Amsterdam during ApacheCon, in case anyone wants to meet up.

CNLP ApacheCon 2005 Demo

2006-08-28 Thread eddie fahy
Hi, I am trying to run CNLP ApacheCon 2005 Demo but I am not able to run it or perhaps not able to deploy it properly. I am using .. jdk1.5.0_06 Tomcat 5.5.17 What I did.. 1 ) I copied files from src\main\web\ (inside cnlp-apachecon.zip) and created a folder,apachecon, in webapps directory

Re: ApacheCon 2005 and Lucene

2005-10-28 Thread Erik Hatcher
ache Portable Runtime. Lucene4c is + still under incubation. + + + + + + News + + 28 October 2005 - Lucene at ApacheCon + On December 12, 2005 at 3pm, Grant Ingersoll will be presenting the session titled "Advanced Lucene", covering Term Vectors,

Re: ApacheCon 2005 and Lucene

2005-10-28 Thread Grant Ingersoll
4c is a + C-based search engine compatible with Lucene + Java, built on the Apache Portable Runtime. Lucene4c is + still under incubation. + + + + + + News + + 28 October 2005 - Lucene at ApacheCon + On December 12, 2005 at 3pm, Grant Ingersoll will be pres

Re: ApacheCon 2005 and Lucene

2005-10-27 Thread Doug Cutting
Grant Ingersoll wrote: Should I get the source and propose a patch or is there somebody who is in "charge" of the website? A patch would be great. The site is generated from the xdocs directory with 'ant docs'. You also need to check out jakarta-site2 as ../jakarta-site2. Doug --

ApacheCon 2005 and Lucene

2005-10-27 Thread Grant Ingersoll
Hi, Don't know what the protocol is for suggesting changes to the Lucene website, but I was wondering if we could do a little promotion of my talk on Lucene at ApacheCon this year on the website, similar to what many of the other Apache projects have done on their websites, such as S