<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Lucid Imagination &#187; Erik Hatcher</title>
	<atom:link href="http://www.lucidimagination.com/blog/tag/erik-hatcher/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lucidimagination.com/blog</link>
	<description>Exclusively dedicated to Apache Lucene/Solr open source search technology</description>
	<lastBuildDate>Sat, 04 Feb 2012 01:12:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Indexing rich files into Solr, quickly and easily</title>
		<link>http://www.lucidimagination.com/blog/2011/08/31/indexing-rich-files-into-solr-quickly-and-easily/</link>
		<comments>http://www.lucidimagination.com/blog/2011/08/31/indexing-rich-files-into-solr-quickly-and-easily/#comments</comments>
		<pubDate>Wed, 31 Aug 2011 14:07:53 +0000</pubDate>
		<dc:creator>Erik Hatcher</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Solr]]></category>
		<category><![CDATA[Tika]]></category>
		<category><![CDATA[Erik Hatcher]]></category>

		<guid isPermaLink="false">http://www.lucidimagination.com/blog/?p=3885</guid>
		<description><![CDATA[<p>This past weekend I presented yet another &#8220;Rapid Prototyping with Solr&#8221; presentation, this time back in the saddle with the <a title="No Fluff, Just Stuff - Raleigh, August 2011" href="http://www.nofluffjuststuff.com/conference/raleigh/2011/08/home" target="_blank">No Fluff, Just Stuff symposium in Raleigh, NC</a>. I intentionally waited until the last minute to hack together a quick script to index some data I haven&#8217;t indexed before to demonstrate the ease at which one can grab Solr and immediately make some use out of it. This time around I cobbled together a &#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>This past weekend I presented yet another &#8220;Rapid Prototyping with Solr&#8221; presentation, this time back in the saddle with the <a title="No Fluff, Just Stuff - Raleigh, August 2011" href="http://www.nofluffjuststuff.com/conference/raleigh/2011/08/home" target="_blank">No Fluff, Just Stuff symposium in Raleigh, NC</a>. I intentionally waited until the last minute to hack together a quick script to index some data I haven&#8217;t indexed before to demonstrate the ease at which one can grab Solr and immediately make some use out of it. This time around I cobbled together a simple Ruby script to index a directory full of rich (PDF, HTML, Word, etc) documents into a fresh Solr 3.3.0 install. Only a few seconds later I have my documents indexed, and even searchable through a user interface.</p>
<p>Here&#8217;s the steps I took:</p>
<ol>
<li>Download and &#8220;install&#8221; (aka unzip) Apache Solr 3.3.0</li>
<li>Launch Solr (cd example; java -jar start.jar)</li>
<li>Index files</li>
</ol>
<p>That&#8217;s it.  Here&#8217;s the indexing script I used:</p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;"><span style="color:#CC0066; font-weight:bold;">require</span> <span style="color:#996600;">'net/http'</span>
&nbsp;
<span style="color:#0066ff; font-weight:bold;">@dir</span> = <span style="color:#CC00FF; font-weight:bold;">Dir</span>.<span style="color:#9900CC;">new</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#996600;">&quot;/Users/erikhatcher/apache-solr-3.3.0/docs&quot;</span><span style="color:#006600; font-weight:bold;">&#41;</span>
&nbsp;
<span style="color:#0066ff; font-weight:bold;">@url</span> = <span style="color:#CC00FF; font-weight:bold;">URI</span>.<span style="color:#9900CC;">parse</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#996600;">&quot;http://localhost:8983/solr&quot;</span><span style="color:#006600; font-weight:bold;">&#41;</span>
<span style="color:#0066ff; font-weight:bold;">@connection</span> = <span style="color:#6666ff; font-weight:bold;">Net::HTTP</span>.<span style="color:#9900CC;">new</span><span style="color:#006600; font-weight:bold;">&#40;</span>@url.<span style="color:#9900CC;">host</span>, <span style="color:#0066ff; font-weight:bold;">@url</span>.<span style="color:#9900CC;">port</span><span style="color:#006600; font-weight:bold;">&#41;</span>
&nbsp;
<span style="color:#9966CC; font-weight:bold;">def</span> index<span style="color:#006600; font-weight:bold;">&#40;</span>filename<span style="color:#006600; font-weight:bold;">&#41;</span>
<span style="color:#0066ff; font-weight:bold;">@connection</span>.<span style="color:#9900CC;">get</span><span style="color:#006600; font-weight:bold;">&#40;</span>@url.<span style="color:#9900CC;">path</span> <span style="color:#006600; font-weight:bold;">+</span> <span style="color:#996600;">&quot;/update/extract?stream.file=#{filename}&amp;amp;literal.id=#{filename}&quot;</span><span style="color:#006600; font-weight:bold;">&#41;</span>
<span style="color:#9966CC; font-weight:bold;">end</span>
&nbsp;
<span style="color:#9966CC; font-weight:bold;">def</span> commit
<span style="color:#0066ff; font-weight:bold;">@connection</span>.<span style="color:#9900CC;">get</span><span style="color:#006600; font-weight:bold;">&#40;</span>@url.<span style="color:#9900CC;">path</span> <span style="color:#006600; font-weight:bold;">+</span> <span style="color:#996600;">&quot;/update?commit=true&quot;</span><span style="color:#006600; font-weight:bold;">&#41;</span>
<span style="color:#9966CC; font-weight:bold;">end</span>
&nbsp;
<span style="color:#0066ff; font-weight:bold;">@dir</span>.<span style="color:#9900CC;">each</span> <span style="color:#006600; font-weight:bold;">&#123;</span><span style="color:#006600; font-weight:bold;">|</span>name<span style="color:#006600; font-weight:bold;">|</span>
  f = <span style="color:#996600;">&quot;#{@dir.path}/#{name}&quot;</span>
  <span style="color:#9966CC; font-weight:bold;">if</span> <span style="color:#CC00FF; font-weight:bold;">File</span>.<span style="color:#9900CC;">file</span>?<span style="color:#006600; font-weight:bold;">&#40;</span>f<span style="color:#006600; font-weight:bold;">&#41;</span>
    <span style="color:#CC0066; font-weight:bold;">puts</span> <span style="color:#996600;">&quot;Indexing #{f}...&quot;</span>
    index<span style="color:#006600; font-weight:bold;">&#40;</span>f<span style="color:#006600; font-weight:bold;">&#41;</span>
  <span style="color:#9966CC; font-weight:bold;">end</span>
<span style="color:#006600; font-weight:bold;">&#125;</span>
&nbsp;
<span style="color:#CC0066; font-weight:bold;">puts</span> <span style="color:#996600;">&quot;Committing...&quot;</span>
commit
&nbsp;
<span style="color:#CC0066; font-weight:bold;">puts</span> <span style="color:#996600;">&quot;Done!&quot;</span></pre></div></div>

<p>To make it look prettier, only a little dabbling with the templates is needed &#8211; add your company logo, customize the colors. And a change to the example (/browse handler) configuration to facet on content_type will allow you to easily search just within documents of specific types through the included UI.  The example code above indexed the docs that ship with Apache Solr 3.3.0; just change the path to a directory of yours to index your own content.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lucidimagination.com/blog/2011/08/31/indexing-rich-files-into-solr-quickly-and-easily/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Charlottesville, VA meetup</title>
		<link>http://www.lucidimagination.com/blog/2011/08/09/charlottesville-va-meetup/</link>
		<comments>http://www.lucidimagination.com/blog/2011/08/09/charlottesville-va-meetup/#comments</comments>
		<pubDate>Tue, 09 Aug 2011 14:25:42 +0000</pubDate>
		<dc:creator>Erik Hatcher</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Lucene]]></category>
		<category><![CDATA[Lucid Imagination]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Solr]]></category>
		<category><![CDATA[charlottesville]]></category>
		<category><![CDATA[Erik Hatcher]]></category>
		<category><![CDATA[virginia]]></category>

		<guid isPermaLink="false">http://www.lucidimagination.com/blog/?p=3819</guid>
		<description><![CDATA[[ Monday, 15 August 2011; 18:00 to 21:00. ] <p>If you&#8217;re in the central VA, or even in the northern VA / DC area, come join us for the inaugural <a href="http://www.meetup.com/Charlottesville-Apache-Lucene-Solr-Meetup/events/25877811/">&#8220;Charlottesville Solr and Lucene Meetup&#8221;</a>.  Charlottesville is home to the co-authors of Manning&#8217;s &#8220;Lucene in Action&#8221; and Packt&#8217;s Solr &#8220;Solr 1.4 Enterprise Search Server&#8221; books.  This area is a hotbed of search activity thanks to NGIC and DIA calling Charlottesville home, and the many &#8230;</p>]]></description>
			<content:encoded><![CDATA[[ Monday, 15 August 2011; 18:00 to 21:00. ] <p>If you&#8217;re in the central VA, or even in the northern VA / DC area, come join us for the inaugural <a href="http://www.meetup.com/Charlottesville-Apache-Lucene-Solr-Meetup/events/25877811/">&#8220;Charlottesville Solr and Lucene Meetup&#8221;</a>.  Charlottesville is home to the co-authors of Manning&#8217;s &#8220;Lucene in Action&#8221; and Packt&#8217;s Solr &#8220;Solr 1.4 Enterprise Search Server&#8221; books.  This area is a hotbed of search activity thanks to NGIC and DIA calling Charlottesville home, and the many gov&#8217;t subcontractors supporting them here.  We are also home of hotelicopter, OpenQ, the University of Virginia, and many other organizations that use Lucene and Solr.</p>
<p>Looking forward to seeing you there.   Everyone in attendance will not only get to hear about the latest greatest enhancements to these technologies, but may also walk away with a cool Lucid t-shirt!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lucidimagination.com/blog/2011/08/09/charlottesville-va-meetup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Überconf &#8211; No Fluff, Just Solr</title>
		<link>http://www.lucidimagination.com/blog/2011/07/19/uberconf-no-fluff-just-solr/</link>
		<comments>http://www.lucidimagination.com/blog/2011/07/19/uberconf-no-fluff-just-solr/#comments</comments>
		<pubDate>Tue, 19 Jul 2011 19:33:09 +0000</pubDate>
		<dc:creator>Erik Hatcher</dc:creator>
				<category><![CDATA[Lucene]]></category>
		<category><![CDATA[Lucid Imagination]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Solr]]></category>
		<category><![CDATA[Erik Hatcher]]></category>
		<category><![CDATA[uberconf]]></category>
		<category><![CDATA[uberconf11]]></category>

		<guid isPermaLink="false">http://www.lucidimagination.com/blog/?p=3784</guid>
		<description><![CDATA[[ Tuesday, 12 July 2011 to Friday, 15 July 2011. ] <p>I had the honor and pleasure of being invited to speak at <a href="http://uberconf.com/conference/denver/2011/07/home">Überconf</a> last week in the Denver, CO area.  <img class="alignright" src="http://www.nofluffjuststuff.com/images/2011/uber/UberConf_125x125_v2-01.png" alt="Überconf" /> The annual conference is organized by Jay Zimmerman of No Fluff, Just Stuff fame.  Überconf  has the same top-notch quality, at a grander scale &#8211; 10 concurrent tracks (woah!), full day pre-conference trainings (<a href="http://uberconf.com/conference/denver/2011/07/mobile_workshops">mobile, anyone?</a>), food (full breakfast!  that&#8217;s a REAL hearty &#8230;</p>]]></description>
			<content:encoded><![CDATA[[ Tuesday, 12 July 2011 to Friday, 15 July 2011. ] <p>I had the honor and pleasure of being invited to speak at <a href="http://uberconf.com/conference/denver/2011/07/home">Überconf</a> last week in the Denver, CO area.  <img class="alignright" src="http://www.nofluffjuststuff.com/images/2011/uber/UberConf_125x125_v2-01.png" alt="Überconf" /> The annual conference is organized by Jay Zimmerman of No Fluff, Just Stuff fame.  Überconf  has the same top-notch quality, at a grander scale &#8211; 10 concurrent tracks (woah!), full day pre-conference trainings (<a href="http://uberconf.com/conference/denver/2011/07/mobile_workshops">mobile, anyone?</a>), food (full breakfast!  that&#8217;s a REAL hearty bonus!), and many of the best technical presenters in the industry.  Lucene/Solr earned a full day &#8220;track&#8221; at Überconf.<br />
<span id="more-3784"></span><br />
One full day was dedicated to my three Solr presentations, one being a double-session &#8220;workshop&#8221;.  I began the day presenting &#8220;Rapid Prototyping with Solr&#8221;, demonstrating several quick dataset ingestion up to usable search user interface examples.  Is Solr right for your data and your environment?  Try it and see &#8211; it&#8217;ll be 15 minutes well spent!  <img src='http://www.lucidimagination.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Here are the slides for &#8220;Rapid Prototyping with Solr&#8221;:
<div style="width:340px" id="__ss_8600305"> <strong style="display:block;margin:12px 0 4px"><a href="http://www.slideshare.net/erikhatcher/rapid-prototyping-with-solr-8600305" title="Rapid Prototyping with Solr" target="_blank">Rapid Prototyping with Solr</a></strong> <iframe src="http://www.slideshare.net/slideshow/embed_code/8600305?rel=0" width="340" height="284" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe>
<div style="padding:5px 0 12px"> View more <a href="http://www.slideshare.net/" target="_blank">presentations</a> from <a href="http://www.slideshare.net/erikhatcher" target="_blank">Erik Hatcher</a> </div>
</p></div>
<p>My next talk, titled &#8220;Solr Recipes&#8221;, was a 3 hour workshop covering the common ways to get data into Solr, configure it, and leverage it within applications.  </p>
<p>Here are the &#8220;Solr Recipes&#8221; slides:
<div style="width:340px" id="__ss_8600306"> <strong style="display:block;margin:12px 0 4px"><a href="http://www.slideshare.net/erikhatcher/solr-recipes-workshop" title="Solr Recipes Workshop" target="_blank">Solr Recipes Workshop</a></strong> <iframe src="http://www.slideshare.net/slideshow/embed_code/8600306?rel=0" width="340" height="284" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe>
<div style="padding:5px 0 12px"> View more <a href="http://www.slideshare.net/" target="_blank">presentations</a> from <a href="http://www.slideshare.net/erikhatcher" target="_blank">Erik Hatcher</a> </div>
</p></div>
<p>And finally, to a few hardcore folks, I discussed &#8220;Lucene for Solr Developers&#8221;, which more broadly covered the various ways to extend Solr.  One  cool example (or so I think, at least) I built for this talk that I&#8217;ve put out there as food for thought is &#8220;auto-faceting&#8221;, having a way for Solr to determine the best facets to select for a given query.  See <a href="https://issues.apache.org/jira/browse/SOLR-2641">SOLR-2641</a> for my initial proof-of-concept implementation. </p>
<p>Here are the &#8220;Lucene for Solr Developers&#8221; slides:
<div style="width:340px" id="__ss_8600304"> <strong style="display:block;margin:12px 0 4px"><a href="http://www.slideshare.net/erikhatcher/lucene-for-solr-developers" title="Lucene for Solr Developers" target="_blank">Lucene for Solr Developers</a></strong> <iframe src="http://www.slideshare.net/slideshow/embed_code/8600304?rel=0" width="340" height="284" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe>
<div style="padding:5px 0 12px"> View more <a href="http://www.slideshare.net/" target="_blank">presentations</a> from <a href="http://www.slideshare.net/erikhatcher" target="_blank">Erik Hatcher</a> </div>
</p></div>
<p>There was so much going on that I barely got to tap into the conference experience myself, with the best part being the conversations had during meals, and between and during the scheduled talks.  I was able to reconnect with many long-time friends that I&#8217;ve made through No Fluff, Just Stuff, and made many new acquaintances &#8211; I won&#8217;t name names, as <a href="http://uberconf.com/conference/denver/2011/07/speakers">this list</a> covers most of them.</p>
<p>Thank you, Überconf, Jay, and fellow speakers and attendees for a stellar technical event.   If you missed it, don&#8217;t despair, <a href="http://www.nofluffjuststuff.com">No Fluff, Just Stuff</a> brings many of the same speakers and topics to an area near you.  I&#8217;ll be speaking at a few NFJS events during the second half of this year, including <a href="http://www.nofluffjuststuff.com/conference/raleigh/2011/08/home">Raleigh, NC</a>, <a href="http://www.nofluffjuststuff.com/conference/boston/2011/09/home">Boston, MA</a>, and, surely to rival the quality and size of Überconf,  <a href="http://www.therichwebexperience.com/conference/fort_lauderdale/2011/11/home">The Rich Web Experience</a> in Ft. Lauderdale, FL.</p>
<p>Let&#8217;s talk.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lucidimagination.com/blog/2011/07/19/uberconf-no-fluff-just-solr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Data.gov on Solr</title>
		<link>http://www.lucidimagination.com/blog/2010/11/05/data-gov-on-solr/</link>
		<comments>http://www.lucidimagination.com/blog/2010/11/05/data-gov-on-solr/#comments</comments>
		<pubDate>Fri, 05 Nov 2010 21:43:44 +0000</pubDate>
		<dc:creator>Erik Hatcher</dc:creator>
				<category><![CDATA[ApacheCon]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[LucidWorks]]></category>
		<category><![CDATA[Solr]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[Erik Hatcher]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.lucidimagination.com/blog/?p=2604</guid>
		<description><![CDATA[<p>At <a href="http://apachecon.com">ApacheCon</a> this week I presented <a href="http://na.apachecon.com/c/acna2010/sessions/571">&#8220;Rapid Prototyping with Solr&#8221;</a>.  This is the third time I&#8217;ve given a presentation with the same title.  In the spirit of the rapid prototyping theme, each time I&#8217;ve created a new prototype just a day or so prior to presenting it.  At <a href="http://lucene-eurocon.org/sessions-track2-day2.html#4">Lucene EuroCon</a> the prototype used attendee data, a treemap visualization, and a cute little Solr-powered &#8220;app&#8221; for picking attendees at random for the conference giveaways.  For &#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>At <a href="http://apachecon.com">ApacheCon</a> this week I presented <a href="http://na.apachecon.com/c/acna2010/sessions/571">&#8220;Rapid Prototyping with Solr&#8221;</a>.  This is the third time I&#8217;ve given a presentation with the same title.  In the spirit of the rapid prototyping theme, each time I&#8217;ve created a new prototype just a day or so prior to presenting it.  At <a href="http://lucene-eurocon.org/sessions-track2-day2.html#4">Lucene EuroCon</a> the prototype used attendee data, a treemap visualization, and a cute little Solr-powered &#8220;app&#8221; for picking attendees at random for the conference giveaways.  For a recent <a href="http://www.lucidimagination.com/blog/2010/06/10/rapid-prototyping-search-applications-with-solr/">Lucid webinar</a> the prototype was more general purpose, bringing in and making searchable rich documents and faceting on file types with a pie chart visualization.</p>
<p>This time around, the data set I chose was <a href="http://www.data.gov/raw/92">Data.gov&#8217;s catalog of datasets</a>, which fit with the ApacheCon open source aura, and Lucid Imagination&#8217;s support of <a href="http://opensourceforamerica.org/awards/2010-recipients">Open Source for America</a>, which helps to advocate for open source in the US Federal Government.  The prototype built includes faceting browsing, query term suggest, hit highlighting, result clustering, spell checking, document detail, and a bonus Venn diagram visualization.</p>
<p><span id="more-2604"></span></p>
<p>The prototype was built with these steps:</p>
<ol>
<li>Install LucidWorks for Solr</li>
<li>Grab the Data.gov catalog CSV file</li>
<li>Iterate a bit with Solr&#8217;s CSV update handler (the funnest way to get data into Solr) and a little Solr schema tinkering</li>
<li>Adjusted the Solr configuration and UI templates to get a nice look and feel, adding in a document detail page and a Venn diagram visualization comparing query overlaps</li>
</ol>
<p>Voilà (click the images for large view):</p>
<table class="plain" style="width: 100%;" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="60%"><a href="http://www.lucidimagination.com/blog/wp-content/uploads/2010/11/datagov_search.png"><img class="alignnone size-thumbnail wp-image-2617" title="Data.gov on Solr" src="http://www.lucidimagination.com/blog/wp-content/uploads/2010/11/datagov_search-150x150.png" alt="" width="150" height="150" /></a></td>
<td><a href="http://www.lucidimagination.com/blog/wp-content/uploads/2010/11/datagov_compare.png"><img class="size-thumbnail wp-image-2627" title="query comparison Venn diagram" src="http://www.lucidimagination.com/blog/wp-content/uploads/2010/11/datagov_compare-150x150.png" alt="" width="150" height="150" /></a></td>
</tr>
</tbody>
</table>
<p>This isn&#8217;t the first time we&#8217;ve toyed with Data.gov data&#8230; earlier this year, <a href="../../../../../../blog/2010/05/07/data-mining-data-dot-gov/">Hoss demonstrated Solr&#8217;s stats component</a> on another of Data.gov&#8217;s data sets.</p>
<p>My ApacheCon slides are published at Slideshare and embedded here:</p>
<div id="__ss_5675936" style="width: 425px;"><strong><a title="Rapid prototyping with solr" href="http://www.slideshare.net/erikhatcher/rapid-prototyping-with-solr-5675936">Rapid prototyping with solr</a></strong><object id="__sse5675936" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=rapidprototypingwithsolr-101105050018-phpapp01&amp;stripped_title=rapid-prototyping-with-solr-5675936&amp;userName=erikhatcher" /><param name="name" value="__sse5675936" /><param name="allowfullscreen" value="true" /><embed id="__sse5675936" type="application/x-shockwave-flash" width="425" height="355" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=rapidprototypingwithsolr-101105050018-phpapp01&amp;stripped_title=rapid-prototyping-with-solr-5675936&amp;userName=erikhatcher" name="__sse5675936" allowscriptaccess="always" allowfullscreen="true"></embed></object></div>
<p>All the code and instructions for running the entire prototype yourself can be found here: <a href="https://github.com/erikhatcher/solr-rapid-prototyping/tree/master/ApacheCon2010">https://github.com/erikhatcher/solr-rapid-prototyping/tree/master/ApacheCon2010</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lucidimagination.com/blog/2010/11/05/data-gov-on-solr/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Lucene, Solr, Mahout and Droids ApacheCon EU in Amsterdam March 23-27</title>
		<link>http://www.lucidimagination.com/blog/2009/02/09/lucene-solr-mahout-and-droids-apachecon-eu-in-amsterdam-march-23-27/</link>
		<comments>http://www.lucidimagination.com/blog/2009/02/09/lucene-solr-mahout-and-droids-apachecon-eu-in-amsterdam-march-23-27/#comments</comments>
		<pubDate>Mon, 09 Feb 2009 17:44:20 +0000</pubDate>
		<dc:creator>Grant Ingersoll</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Lucene]]></category>
		<category><![CDATA[Lucid Imagination]]></category>
		<category><![CDATA[Solr]]></category>
		<category><![CDATA[Erik Hatcher]]></category>
		<category><![CDATA[Grant Ingersoll]]></category>

		<guid isPermaLink="false">http://www.lucidimagination.com/blog/?p=82</guid>
		<description><![CDATA[[ Monday, 23 March 2009 to Friday, 27 March 2009. ] <p><a href="http://lucene.grantingersoll.com/2009/02/09/lucene-and-me-at-apachecon-eu-in-amsterdam-march-23-27/">Lucene and me at ApacheCon EU in Amsterdam March 23-27</a>.</p>
<p>I&#8217;ve posted a Lucene related event schedule on my blog for people who are interested.  Of particular note are the two days of pre-conference training on both Lucene and Solr.  These are shorter ApacheCon versions of our <a href="http://www.lucidimagination.com/How-We-Can-Help/Training/">3 day training classes</a>.  Obviously, we can&#8217;t cover all the material that we do in &#8230;</p>]]></description>
			<content:encoded><![CDATA[[ Monday, 23 March 2009 to Friday, 27 March 2009. ] <p><a href="http://lucene.grantingersoll.com/2009/02/09/lucene-and-me-at-apachecon-eu-in-amsterdam-march-23-27/">Lucene and me at ApacheCon EU in Amsterdam March 23-27</a>.</p>
<p>I&#8217;ve posted a Lucene related event schedule on my blog for people who are interested.  Of particular note are the two days of pre-conference training on both Lucene and Solr.  These are shorter ApacheCon versions of our <a href="http://www.lucidimagination.com/How-We-Can-Help/Training/">3 day training classes</a>.  Obviously, we can&#8217;t cover all the material that we do in our full courses, but they are a means for people who are attending the conference or who are in the vicinity to get some Solr and Lucene training.  Of course, if you can&#8217;t make it to ApacheCon, we&#8217;d be happy to discuss alternative training opportunities.  In fact, last year, I did an on-site training at a company in Europe right around conference time.  Just drop us a line at training@lucidimagination.com and we can see what works out.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lucidimagination.com/blog/2009/02/09/lucene-solr-mahout-and-droids-apachecon-eu-in-amsterdam-march-23-27/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Rising Sun: Erik Hatcher presents at code4lib conference</title>
		<link>http://www.lucidimagination.com/blog/2009/02/05/code4lib/</link>
		<comments>http://www.lucidimagination.com/blog/2009/02/05/code4lib/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 22:29:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Lucid Imagination]]></category>
		<category><![CDATA[code4lib]]></category>
		<category><![CDATA[Erik Hatcher]]></category>

		<guid isPermaLink="false">http://blog.lucidimagination.com/?p=46</guid>
		<description><![CDATA[[ Monday, 23 February 2009 to Thursday, 26 February 2009. ] <p>Erik presents &#8220;The Rising Sun: Making the most of Solr power&#8221; at <a href="http://code4lib.org/conference/2009/">2009 code{4}lib conference</a> in Providence, RI.    &#8220;Rapid fire, Erik will go through a number of ways to improve existing Solr usage in performance, relevancy, and user interface&#8221;.&#8230;</p>]]></description>
			<content:encoded><![CDATA[[ Monday, 23 February 2009 to Thursday, 26 February 2009. ] <p>Erik presents &#8220;The Rising Sun: Making the most of Solr power&#8221; at <a href="http://code4lib.org/conference/2009/">2009 code{4}lib conference</a> in Providence, RI.    &#8220;Rapid fire, Erik will go through a number of ways to improve existing Solr usage in performance, relevancy, and user interface&#8221;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lucidimagination.com/blog/2009/02/05/code4lib/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solr with Ruby: Erik Hatcher speaks at CVREG, 10 Feb 09, Richmond, Virginia</title>
		<link>http://www.lucidimagination.com/blog/2009/02/05/erik-hatcher-speaks-10feb-virginia/</link>
		<comments>http://www.lucidimagination.com/blog/2009/02/05/erik-hatcher-speaks-10feb-virginia/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 21:48:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Lucid Imagination]]></category>
		<category><![CDATA[Erik Hatcher]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[Richmond]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Solr]]></category>
		<category><![CDATA[VA]]></category>

		<guid isPermaLink="false">http://blog.lucidimagination.com/?p=34</guid>
		<description><![CDATA[[ Tuesday, 10 February 2009; 18:00 to 20:00. ] <p>If you’re considering adding search capabilities to your Rails app, and you&#8217;re going to be in Richmond VA this Tuesday, do yourself a favor: <a href="http://upcoming.yahoo.com/event/1771788/">come out</a> and learn what Solr can do for your application from 6 to 8 pm. Lucid Imagination&#8217;s own <a title="Bio" href="http://www.lucidimagination.com/About/Technical-Leadership/#ehatcher">Erik Hatcher</a> will <a href="http://cvreg.org/2009/2/4/february-s-meeting-erik-hatcher-solr-lucene">present on Solr fundamentals</a> to the <a href="http://cvreg.org/">Central Virginia Ruby Enthusiast Group</a>. Erik will demonstrate its features live through the &#8230;</p>]]></description>
			<content:encoded><![CDATA[[ Tuesday, 10 February 2009; 18:00 to 20:00. ] <p>If you’re considering adding search capabilities to your Rails app, and you&#8217;re going to be in Richmond VA this Tuesday, do yourself a favor: <a href="http://upcoming.yahoo.com/event/1771788/">come out</a> and learn what Solr can do for your application from 6 to 8 pm. Lucid Imagination&#8217;s own <a title="Bio" href="http://www.lucidimagination.com/About/Technical-Leadership/#ehatcher">Erik Hatcher</a> will <a href="http://cvreg.org/2009/2/4/february-s-meeting-erik-hatcher-solr-lucene">present on Solr fundamentals</a> to the <a href="http://cvreg.org/">Central Virginia Ruby Enthusiast Group</a>. Erik will demonstrate its features live through the command-line and browser, and delve into working with Solr through Ruby. After all of the flashy cool stuff, Erik will talk about production considerations for deploying Solr for real such as scaling via replication and distributed search.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lucidimagination.com/blog/2009/02/05/erik-hatcher-speaks-10feb-virginia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

