<?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>Tech Blog &#187; Sphinx</title>
	<atom:link href="http://informationideas.com/news/category/sphinx/feed/" rel="self" type="application/rss+xml" />
	<link>http://informationideas.com/news</link>
	<description>Using technology to help your business</description>
	<lastBuildDate>Sat, 17 Mar 2012 02:14:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Auto start Sphinx searchd after reboot on Linux</title>
		<link>http://informationideas.com/news/2012/02/16/auto-start-sphinx-searchd-after-reboot-on-linux/</link>
		<comments>http://informationideas.com/news/2012/02/16/auto-start-sphinx-searchd-after-reboot-on-linux/#comments</comments>
		<pubDate>Thu, 16 Feb 2012 22:09:07 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[admin]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Sphinx]]></category>

		<guid isPermaLink="false">http://informationideas.com/news/?p=212</guid>
		<description><![CDATA[By default, after you install and configure Sphinx, you will find that once your OS restarts, search will not be working. That is because searchd is not setup to auto start. The following will solve that problem. Create file /etc/init.d/searchd. sudo vi /etc/init.d/searchd Copy the following into searchd. #!/bin/bash case "${1:-''}" in 'start') /usr/local/bin/searchd ;; [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><!-- End Shareaholic LikeButtonSetTop --><p>By default, after you install and configure Sphinx, you will find that once your OS restarts, search will not be working. That is because searchd is not setup to auto start. The following will solve that problem.</p>
<p>Create file /etc/init.d/searchd.<br />
<code>sudo vi /etc/init.d/searchd</code></p>
<p>Copy the following into searchd.<br />
<code>#!/bin/bash</code></p>
<p>case "${1:-''}" in<br />
'start')<br />
/usr/local/bin/searchd<br />
;;<br />
'stop')<br />
/usr/local/bin/searchd --stop<br />
;;<br />
'restart')<br />
/usr/local/bin/searchd --stop &amp;&amp; /usr/local/bin/searchd<br />
;;<br />
*)<br />
echo "Usage: $SELF start|stop|restart"<br />
exit 1<br />
;;<br />
esac</p>
<p>Add execute to the file<br />
<code>sudo chmod -x /etc/init.d/searchd</code></p>
<p>Register with auto start<br />
<code>sudo update-rc.d searchd defaults</code></p>
<div class="shr-publisher-212"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://informationideas.com/news/2012/02/16/auto-start-sphinx-searchd-after-reboot-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sphinx Search default limit is 20</title>
		<link>http://informationideas.com/news/2009/10/02/sphinx-search-default-limit-is-20/</link>
		<comments>http://informationideas.com/news/2009/10/02/sphinx-search-default-limit-is-20/#comments</comments>
		<pubDate>Sat, 03 Oct 2009 04:30:09 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Sphinx]]></category>

		<guid isPermaLink="false">http://informationideas.com/news/?p=112</guid>
		<description><![CDATA[When using the sphinx api, you must use SetLimts if you want more than 20 records.  Currently, it is not documented on the sphinx api doc.]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><!-- End Shareaholic LikeButtonSetTop --><p>When using the sphinx api, you must use SetLimts if you want more than 20 records.  Currently, it is not documented on the <a href="http://www.sphinxsearch.com/wiki/doku.php?id=php_api_docs">sphinx api doc</a>.</p>
<div class="shr-publisher-112"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://informationideas.com/news/2009/10/02/sphinx-search-default-limit-is-20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.276 seconds -->

