<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Simon Emms</title>
	<atom:link href="http://www.simonemms.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.simonemms.com</link>
	<description>PHP developer of awesomity</description>
	<lastBuildDate>Fri, 13 Jan 2012 09:44:53 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on CodeIgniter Solr by Simon</title>
		<link>http://www.simonemms.com/2011/02/08/codeigniter-solr/#comment-16</link>
		<dc:creator>Simon</dc:creator>
		<pubDate>Fri, 13 Jan 2012 09:44:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.simonemms.com/?p=187#comment-16</guid>
		<description>At the moment, my Solr library only retrieves data.  If you need to use this soon, I&#039;d suggest using my class as a basis and write an insert() and update() method.

Information on how to do it is here - http://lucene.apache.org/solr/tutorial.html#Indexing+Data

In case you&#039;re interested, I&#039;m currently working on a complete rewrite of the Solr library and to make it framework independent.  Details can be found at http://code.google.com/p/solrsystem/

S</description>
		<content:encoded><![CDATA[<p>At the moment, my Solr library only retrieves data.  If you need to use this soon, I&#8217;d suggest using my class as a basis and write an insert() and update() method.</p>
<p>Information on how to do it is here &#8211; <a href="http://lucene.apache.org/solr/tutorial.html#Indexing+Data" rel="nofollow">http://lucene.apache.org/solr/tutorial.html#Indexing+Data</a></p>
<p>In case you&#8217;re interested, I&#8217;m currently working on a complete rewrite of the Solr library and to make it framework independent.  Details can be found at <a href="http://code.google.com/p/solrsystem/" rel="nofollow">http://code.google.com/p/solrsystem/</a></p>
<p>S</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CodeIgniter Solr by nir o.</title>
		<link>http://www.simonemms.com/2011/02/08/codeigniter-solr/#comment-15</link>
		<dc:creator>nir o.</dc:creator>
		<pubDate>Fri, 13 Jan 2012 09:31:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.simonemms.com/?p=187#comment-15</guid>
		<description>Thanks for this, Simon.
How does one add new documents to the index?</description>
		<content:encoded><![CDATA[<p>Thanks for this, Simon.<br />
How does one add new documents to the index?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CodeIgniter Solr by RiggerTheGeek</title>
		<link>http://www.simonemms.com/2011/02/08/codeigniter-solr/#comment-4</link>
		<dc:creator>RiggerTheGeek</dc:creator>
		<pubDate>Fri, 02 Dec 2011 08:39:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.simonemms.com/?p=187#comment-4</guid>
		<description>No idea. It&#039;s not designed with that in mind</description>
		<content:encoded><![CDATA[<p>No idea. It&#8217;s not designed with that in mind</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CodeIgniter Solr by pelaprat</title>
		<link>http://www.simonemms.com/2011/02/08/codeigniter-solr/#comment-3</link>
		<dc:creator>pelaprat</dc:creator>
		<pubDate>Thu, 01 Dec 2011 18:26:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.simonemms.com/?p=187#comment-3</guid>
		<description>If we use this library, then, we replace our normal db calls with solr calls? I&#039;ve been using sunspot/solr on rails apps, and now have to do some coding in CI (which I&#039;m less used to). Sunspot has syntax for defining documents in the model. Doesn&#039;t seem like your library does. Can you clarify how to use it in one&#039;s app? Thanks.</description>
		<content:encoded><![CDATA[<p>If we use this library, then, we replace our normal db calls with solr calls? I&#8217;ve been using sunspot/solr on rails apps, and now have to do some coding in CI (which I&#8217;m less used to). Sunspot has syntax for defining documents in the model. Doesn&#8217;t seem like your library does. Can you clarify how to use it in one&#8217;s app? Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Facetted Solr Queries in CodeIgniter by RiggerTheGeek</title>
		<link>http://www.simonemms.com/2011/02/09/facetted-solr-queries-in-codeigniter/#comment-6</link>
		<dc:creator>RiggerTheGeek</dc:creator>
		<pubDate>Mon, 28 Nov 2011 00:14:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.simonemms.com/?p=205#comment-6</guid>
		<description>Hmmmmmmm. I love it when I write comments that I understand a year later.  Alas, this isn&#039;t one of those times...

Having had a read of the code, line 954 in the Solr class refers to the set_param() method.  In this method, it prevents duplication of a parameter.  I.E., in the facet_query() method, we&#039;re setting the parameter &#039;facet.query&#039; - if we want to be able to set multiple facet.query, we need to alter the set_param() method to allow concatenation of the queries in the string.

Hope that helps.

S</description>
		<content:encoded><![CDATA[<p>Hmmmmmmm. I love it when I write comments that I understand a year later.  Alas, this isn&#8217;t one of those times&#8230;</p>
<p>Having had a read of the code, line 954 in the Solr class refers to the set_param() method.  In this method, it prevents duplication of a parameter.  I.E., in the facet_query() method, we&#8217;re setting the parameter &#8216;facet.query&#8217; &#8211; if we want to be able to set multiple facet.query, we need to alter the set_param() method to allow concatenation of the queries in the string.</p>
<p>Hope that helps.</p>
<p>S</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Facetted Solr Queries in CodeIgniter by morkov4o</title>
		<link>http://www.simonemms.com/2011/02/09/facetted-solr-queries-in-codeigniter/#comment-5</link>
		<dc:creator>morkov4o</dc:creator>
		<pubDate>Tue, 22 Nov 2011 11:43:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.simonemms.com/?p=205#comment-5</guid>
		<description>Hi! Nice work man ! Could you please explain this

 /**
     * Facet Query
     *
     * Only one query can be sent due to a limitation in
     * the Solr-PHP-Client.  If you need to add multiple
     * queries, will need to rewrite line 954.
     *
     * @param string $query
     * @return object
     */
    final public function facet_query($query) {
        $this-&gt;start_facetting();
        $this-&gt;set_param(&#039;facet.query&#039;, $query);
        return $this;
    }


Which line 954? Where ? In SolrPHPClient ?

Thanks a lot : )</description>
		<content:encoded><![CDATA[<p>Hi! Nice work man ! Could you please explain this</p>
<p> /**<br />
     * Facet Query<br />
     *<br />
     * Only one query can be sent due to a limitation in<br />
     * the Solr-PHP-Client.  If you need to add multiple<br />
     * queries, will need to rewrite line 954.<br />
     *<br />
     * @param string $query<br />
     * @return object<br />
     */<br />
    final public function facet_query($query) {<br />
        $this-&gt;start_facetting();<br />
        $this-&gt;set_param(&#8216;facet.query&#8217;, $query);<br />
        return $this;<br />
    }</p>
<p>Which line 954? Where ? In SolrPHPClient ?</p>
<p>Thanks a lot : )</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Extending the CodeIgniter Database Class by Extending the CodeIgniter Database Active Record class, the non-hacky way</title>
		<link>http://www.simonemms.com/2011/03/18/extending-the-codeigniter-database-class/#comment-10</link>
		<dc:creator>Extending the CodeIgniter Database Active Record class, the non-hacky way</dc:creator>
		<pubDate>Fri, 07 Oct 2011 12:24:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.simonemms.com/?p=315#comment-10</guid>
		<description>[...] is ugly and doesn&#8217;t last across framework updates.However, thanks to the articles I found here and here, I came up with my own solution.This extension requires 1) a custom Loader class, 2) a [...]</description>
		<content:encoded><![CDATA[<p>[...] is ugly and doesn&#8217;t last across framework updates.However, thanks to the articles I found here and here, I came up with my own solution.This extension requires 1) a custom Loader class, 2) a [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CodeIgniter&#8217;s 404 Override Problem by RiggerTheGeek</title>
		<link>http://www.simonemms.com/2011/05/06/codeigniters-404-override-problem/#comment-13</link>
		<dc:creator>RiggerTheGeek</dc:creator>
		<pubDate>Wed, 13 Jul 2011 07:37:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.simonemms.com/?p=409#comment-13</guid>
		<description>As there is no method_exists() function used in this, I&#039;m not 100% sure what you mean.  So I&#039;ll explain the step-by-step process of the MY_Exceptions::show_404() method.

1) Load the router and config classes into this method
2) Get the _404 route, as specified in /application/config/routes.php (as detailed in the blue box on this page)
3) Check the _404 route has something specified, or show the parent method (just displays the basic CodeIgniter error)
4) Has the CI_Controller class already been activated (this would be in /system/core/codeigniter.php)?  If it has, we need to load up the default controller and then reload all the autoload stuff (as specified in /application/config/autoload.php).  If the main controller has not been activated, we need to include the required files and load up the default controller.
5) Run the method specified in the _404 route in the default controller.

Hope that explains.  Shout if it doesn&#039;t.

S</description>
		<content:encoded><![CDATA[<p>As there is no method_exists() function used in this, I&#8217;m not 100% sure what you mean.  So I&#8217;ll explain the step-by-step process of the MY_Exceptions::show_404() method.</p>
<p>1) Load the router and config classes into this method<br />
2) Get the _404 route, as specified in /application/config/routes.php (as detailed in the blue box on this page)<br />
3) Check the _404 route has something specified, or show the parent method (just displays the basic CodeIgniter error)<br />
4) Has the CI_Controller class already been activated (this would be in /system/core/codeigniter.php)?  If it has, we need to load up the default controller and then reload all the autoload stuff (as specified in /application/config/autoload.php).  If the main controller has not been activated, we need to include the required files and load up the default controller.<br />
5) Run the method specified in the _404 route in the default controller.</p>
<p>Hope that explains.  Shout if it doesn&#8217;t.</p>
<p>S</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CodeIgniter&#8217;s 404 Override Problem by Spencer Alger</title>
		<link>http://www.simonemms.com/2011/05/06/codeigniters-404-override-problem/#comment-12</link>
		<dc:creator>Spencer Alger</dc:creator>
		<pubDate>Wed, 13 Jul 2011 03:05:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.simonemms.com/?p=409#comment-12</guid>
		<description>I like this solution, and I will probably implement it but I don&#039;t understand what is happening after the method is confirmed as existing. Can you explain it for my slow self?</description>
		<content:encoded><![CDATA[<p>I like this solution, and I will probably implement it but I don&#8217;t understand what is happening after the method is confirmed as existing. Can you explain it for my slow self?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CodeIgniter Solr by How to use solr on codeigniter? - Quora</title>
		<link>http://www.simonemms.com/2011/02/08/codeigniter-solr/#comment-2</link>
		<dc:creator>How to use solr on codeigniter? - Quora</dc:creator>
		<pubDate>Thu, 02 Jun 2011 19:22:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.simonemms.com/?p=187#comment-2</guid>
		<description>[...] How to use solr on codeigniter?&#160;&#160;&#160;Mike Gioia This article has a good starting point: http://www.simonemms.com/code/co...Although it implements a pretty basic set up similar to active record. Any faceted or location based [...]</description>
		<content:encoded><![CDATA[<p>[...] How to use solr on codeigniter?&nbsp;&nbsp;&nbsp;Mike Gioia This article has a good starting point: <a href="http://www.simonemms.com/code/co...Although" rel="nofollow">http://www.simonemms.com/code/co&#8230;Although</a> it implements a pretty basic set up similar to active record. Any faceted or location based [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

