<?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 on: In-Depth django-sphinx Tutorial</title>
	<atom:link href="http://www.davidcramer.net/code/79/in-depth-django-sphinx-tutorial.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.davidcramer.net/code/79/in-depth-django-sphinx-tutorial.html</link>
	<description>A blog about Django, JavaScript, CSS, and general web development.</description>
	<lastBuildDate>Fri, 12 Mar 2010 19:46:01 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Django 101 &#124; KomunitasWeb</title>
		<link>http://www.davidcramer.net/code/79/in-depth-django-sphinx-tutorial.html/comment-page-1#comment-22033</link>
		<dc:creator>Django 101 &#124; KomunitasWeb</dc:creator>
		<pubDate>Wed, 17 Feb 2010 13:52:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidcramer.net/code/79/in-depth-django-sphinx-tutorial.html#comment-22033</guid>
		<description>[...] In-Depth django-sphinx Tutorial (February 2009) [...]</description>
		<content:encoded><![CDATA[<p>[...] In-Depth django-sphinx Tutorial (February 2009) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: zjm1126</title>
		<link>http://www.davidcramer.net/code/79/in-depth-django-sphinx-tutorial.html/comment-page-1#comment-22009</link>
		<dc:creator>zjm1126</dc:creator>
		<pubDate>Thu, 04 Feb 2010 10:59:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidcramer.net/code/79/in-depth-django-sphinx-tutorial.html#comment-22009</guid>
		<description>i am a chinese boy,and my english is not very good ,i can&#039;y understand this &#039;The typical usage is Model.search.query(&#039;my fulltext query&#039;) which would then query sphinx, grab a list of IDs, and then do a Model.objects.filter(pk__in=[list of ids]) and return this result set.&#039;

and my view:
class File(models.Model):
    name = models.CharField(max_length=200)
    tags = models.CharField(max_length=200) # We actually store tags for efficiency in tag,tag,tag format here
 
    objects = models.Manager()
    search  = djangosphinx.SphinxSearch(index=&quot;test1&quot;)
def xx(request):
    queryset =File.search.query(&#039;test&#039;)
    return HttpResponse(queryset)

and it take a error:
SearchError: connection to localhost;3312 failed ((10061, &#039;Connection refused&#039;))


why?

and can you send a example to me?</description>
		<content:encoded><![CDATA[<p>i am a chinese boy,and my english is not very good ,i can&#8217;y understand this &#8216;The typical usage is Model.search.query(&#8216;my fulltext query&#8217;) which would then query sphinx, grab a list of IDs, and then do a Model.objects.filter(pk__in=[list of ids]) and return this result set.&#8217;</p>
<p>and my view:<br />
class File(models.Model):<br />
    name = models.CharField(max_length=200)<br />
    tags = models.CharField(max_length=200) # We actually store tags for efficiency in tag,tag,tag format here</p>
<p>    objects = models.Manager()<br />
    search  = djangosphinx.SphinxSearch(index=&#8221;test1&#8243;)<br />
def xx(request):<br />
    queryset =File.search.query(&#8216;test&#8217;)<br />
    return HttpResponse(queryset)</p>
<p>and it take a error:<br />
SearchError: connection to localhost;3312 failed ((10061, &#8216;Connection refused&#8217;))</p>
<p>why?</p>
<p>and can you send a example to me?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Django developer</title>
		<link>http://www.davidcramer.net/code/79/in-depth-django-sphinx-tutorial.html/comment-page-1#comment-22008</link>
		<dc:creator>Django developer</dc:creator>
		<pubDate>Thu, 04 Feb 2010 05:24:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidcramer.net/code/79/in-depth-django-sphinx-tutorial.html#comment-22008</guid>
		<description>Excellent post on django modules, very useful for us to develop the software.</description>
		<content:encoded><![CDATA[<p>Excellent post on django modules, very useful for us to develop the software.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: binnyabraham</title>
		<link>http://www.davidcramer.net/code/79/in-depth-django-sphinx-tutorial.html/comment-page-1#comment-21993</link>
		<dc:creator>binnyabraham</dc:creator>
		<pubDate>Mon, 18 Jan 2010 06:57:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidcramer.net/code/79/in-depth-django-sphinx-tutorial.html#comment-21993</guid>
		<description>results = Holiday.search.query(&quot;swimming&quot;).filter(name=&quot;Oberoi&quot;)

Is this filtering is possible in django-sphinx ? If so what i want to set in sphinx.conf file? Now i am getting a value error as
ValueError: invalid literal for int() with base 10: &#039;Oberoi&#039;. 
name is a character field in mysql.

So anyone please reply me asap............
I search for this but i didn&#039;t get any proper answer..
Please help me........</description>
		<content:encoded><![CDATA[<p>results = Holiday.search.query(&#8220;swimming&#8221;).filter(name=&#8221;Oberoi&#8221;)</p>
<p>Is this filtering is possible in django-sphinx ? If so what i want to set in sphinx.conf file? Now i am getting a value error as<br />
ValueError: invalid literal for int() with base 10: &#8216;Oberoi&#8217;.<br />
name is a character field in mysql.</p>
<p>So anyone please reply me asap&#8230;&#8230;&#8230;&#8230;<br />
I search for this but i didn&#8217;t get any proper answer..<br />
Please help me&#8230;&#8230;..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: binnyabraham</title>
		<link>http://www.davidcramer.net/code/79/in-depth-django-sphinx-tutorial.html/comment-page-1#comment-21989</link>
		<dc:creator>binnyabraham</dc:creator>
		<pubDate>Fri, 15 Jan 2010 10:57:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidcramer.net/code/79/in-depth-django-sphinx-tutorial.html#comment-21989</guid>
		<description>is filter is possible in character fileds in django-sphinx</description>
		<content:encoded><![CDATA[<p>is filter is possible in character fileds in django-sphinx</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vicky82_davim</title>
		<link>http://www.davidcramer.net/code/79/in-depth-django-sphinx-tutorial.html/comment-page-1#comment-21038</link>
		<dc:creator>vicky82_davim</dc:creator>
		<pubDate>Fri, 11 Dec 2009 10:31:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidcramer.net/code/79/in-depth-django-sphinx-tutorial.html#comment-21038</guid>
		<description>Recently i have implemented django-sphinx search on my website.
It is working fine of each separate model.
But now my client requirement has changed. He wants to display result as
&quot;Title&quot; first from matching query then description and soon.
But i think sphinx give result specific to each model but not gives combine
result of all models.

So can anyone help me how to display &quot;Title&quot; from matching query as first
and then description and soon from results of all models.

Please help me...............</description>
		<content:encoded><![CDATA[<p>Recently i have implemented django-sphinx search on my website.<br />
It is working fine of each separate model.<br />
But now my client requirement has changed. He wants to display result as<br />
&#8220;Title&#8221; first from matching query then description and soon.<br />
But i think sphinx give result specific to each model but not gives combine<br />
result of all models.</p>
<p>So can anyone help me how to display &#8220;Title&#8221; from matching query as first<br />
and then description and soon from results of all models.</p>
<p>Please help me&#8230;&#8230;&#8230;&#8230;&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Graham King</title>
		<link>http://www.davidcramer.net/code/79/in-depth-django-sphinx-tutorial.html/comment-page-1#comment-20984</link>
		<dc:creator>Graham King</dc:creator>
		<pubDate>Wed, 30 Sep 2009 00:17:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidcramer.net/code/79/in-depth-django-sphinx-tutorial.html#comment-20984</guid>
		<description>@Handy

To get more than 20 results, use a slice:

MyModel.search.query(query)[0:1000]</description>
		<content:encoded><![CDATA[<p>@Handy</p>
<p>To get more than 20 results, use a slice:</p>
<p>MyModel.search.query(query)[0:1000]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ofir</title>
		<link>http://www.davidcramer.net/code/79/in-depth-django-sphinx-tutorial.html/comment-page-1#comment-20905</link>
		<dc:creator>Ofir</dc:creator>
		<pubDate>Wed, 29 Jul 2009 20:57:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidcramer.net/code/79/in-depth-django-sphinx-tutorial.html#comment-20905</guid>
		<description>If I add a new record to my MySQL table using the admin or any other way, how can I add it to the Sphinx index?, so it appears when I run a guery()?. Is there a way to do this automatically, so I don&#039;t have to manually run indexer?</description>
		<content:encoded><![CDATA[<p>If I add a new record to my MySQL table using the admin or any other way, how can I add it to the Sphinx index?, so it appears when I run a guery()?. Is there a way to do this automatically, so I don&#8217;t have to manually run indexer?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel</title>
		<link>http://www.davidcramer.net/code/79/in-depth-django-sphinx-tutorial.html/comment-page-1#comment-20810</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Tue, 09 Jun 2009 15:40:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidcramer.net/code/79/in-depth-django-sphinx-tutorial.html#comment-20810</guid>
		<description>Hi, Does anyone know if django-sphinx support faceted search (drill-down filters)? I know that sphinx itself does not provide it out-of-the-box, but there is a Rails plugin (Thinking Sphinx) that implements an easy way to do that... I&#039;m developing my website with django, and I need some help to implement this feature. Can someone help me?</description>
		<content:encoded><![CDATA[<p>Hi, Does anyone know if django-sphinx support faceted search (drill-down filters)? I know that sphinx itself does not provide it out-of-the-box, but there is a Rails plugin (Thinking Sphinx) that implements an easy way to do that&#8230; I&#8217;m developing my website with django, and I need some help to implement this feature. Can someone help me?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tagz &#124; &#34;In-Depth django-sphinx Tutorial &#124; David Cramer.net&#34; &#124; Comments</title>
		<link>http://www.davidcramer.net/code/79/in-depth-django-sphinx-tutorial.html/comment-page-1#comment-20793</link>
		<dc:creator>Tagz &#124; &#34;In-Depth django-sphinx Tutorial &#124; David Cramer.net&#34; &#124; Comments</dc:creator>
		<pubDate>Sat, 16 May 2009 17:04:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidcramer.net/code/79/in-depth-django-sphinx-tutorial.html#comment-20793</guid>
		<description>[...]               [upmod] [downmod]     In-Depth django-sphinx Tutorial &#124; David Cramer.net  (www.davidcramer.net)    0 points posted 10 months, 1 week ago by jeethu  tags development full [...]</description>
		<content:encoded><![CDATA[<p>[...]               [upmod] [downmod]     In-Depth django-sphinx Tutorial | David Cramer.net  (www.davidcramer.net)    0 points posted 10 months, 1 week ago by jeethu  tags development full [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
