<?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: Using MySQL Full Text Search with Rails</title>
	<atom:link href="http://mandhro.com/2006/11/20/using-mysql-full-text-querying-with-rails/feed/" rel="self" type="application/rss+xml" />
	<link>http://mandhro.com/2006/11/20/using-mysql-full-text-querying-with-rails/</link>
	<description>technology = evolution; open source = punctuated equilibrium</description>
	<lastBuildDate>Mon, 09 Feb 2009 15:05:36 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Aaron Gough</title>
		<link>http://mandhro.com/2006/11/20/using-mysql-full-text-querying-with-rails/comment-page-1/#comment-4871</link>
		<dc:creator>Aaron Gough</dc:creator>
		<pubDate>Mon, 09 Feb 2009 15:05:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.mandhro.com/2006/11/20/using-mysql-full-text-querying-with-rails/#comment-4871</guid>
		<description>Hi Zak,
  I implemented a modified version of your schema-dumper patch and then later discovered that it is not needed!
  
  Rails has a built-in configuration option for handling schemas specific to a particular database:

config.active_record.schema_format = :sql

  Simply set the above variable in your environment.rb file and everything works like magic!

  Note that the schema.rb file will still be generated, but the test database will use a .sql file to reset everything. To get the current database schema in SQL format simply type rake db:structure:dump

  -A</description>
		<content:encoded><![CDATA[<p>Hi Zak,<br />
  I implemented a modified version of your schema-dumper patch and then later discovered that it is not needed!</p>
<p>  Rails has a built-in configuration option for handling schemas specific to a particular database:</p>
<p>config.active_record.schema_format = :sql</p>
<p>  Simply set the above variable in your environment.rb file and everything works like magic!</p>
<p>  Note that the schema.rb file will still be generated, but the test database will use a .sql file to reset everything. To get the current database schema in SQL format simply type rake db:structure:dump</p>
<p>  -A</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mysql Download</title>
		<link>http://mandhro.com/2006/11/20/using-mysql-full-text-querying-with-rails/comment-page-1/#comment-3101</link>
		<dc:creator>Mysql Download</dc:creator>
		<pubDate>Sat, 29 Mar 2008 03:51:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.mandhro.com/2006/11/20/using-mysql-full-text-querying-with-rails/#comment-3101</guid>
		<description>Hi Finally I found a site the has some good information on Mysql Download. I was searching around and found your post Using MySQL Full Text Search with Rails, thanks for the good info..I&#039;ll be checkin back soon.</description>
		<content:encoded><![CDATA[<p>Hi Finally I found a site the has some good information on Mysql Download. I was searching around and found your post Using MySQL Full Text Search with Rails, thanks for the good info..I&#8217;ll be checkin back soon.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: coolpositive</title>
		<link>http://mandhro.com/2006/11/20/using-mysql-full-text-querying-with-rails/comment-page-1/#comment-2643</link>
		<dc:creator>coolpositive</dc:creator>
		<pubDate>Mon, 10 Dec 2007 08:53:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.mandhro.com/2006/11/20/using-mysql-full-text-querying-with-rails/#comment-2643</guid>
		<description>I can’t seem to get this to do anything. I unzipped this into vendor/plugins, and ran rake db_schema_dump. The db/schema.rb file still has the same add_index call which fails on the TEXT field. Do I need to do something else to install the plugin?</description>
		<content:encoded><![CDATA[<p>I can’t seem to get this to do anything. I unzipped this into vendor/plugins, and ran rake db_schema_dump. The db/schema.rb file still has the same add_index call which fails on the TEXT field. Do I need to do something else to install the plugin?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zak Mandhro</title>
		<link>http://mandhro.com/2006/11/20/using-mysql-full-text-querying-with-rails/comment-page-1/#comment-794</link>
		<dc:creator>Zak Mandhro</dc:creator>
		<pubDate>Sat, 21 Apr 2007 15:24:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.mandhro.com/2006/11/20/using-mysql-full-text-querying-with-rails/#comment-794</guid>
		<description>Niko: As of Rails 1.1.6, the SQL generated by SchemaDumper failed to recognize the Full Text index, treating it like a simple index. So if you were to let Rails dump the SQL schema and recreated your database from it, your index would not work as expected.

This may have been resolved in 1.2, I haven&#039;t checked.</description>
		<content:encoded><![CDATA[<p>Niko: As of Rails 1.1.6, the SQL generated by SchemaDumper failed to recognize the Full Text index, treating it like a simple index. So if you were to let Rails dump the SQL schema and recreated your database from it, your index would not work as expected.</p>
<p>This may have been resolved in 1.2, I haven&#8217;t checked.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Niko</title>
		<link>http://mandhro.com/2006/11/20/using-mysql-full-text-querying-with-rails/comment-page-1/#comment-788</link>
		<dc:creator>Niko</dc:creator>
		<pubDate>Mon, 16 Apr 2007 17:43:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.mandhro.com/2006/11/20/using-mysql-full-text-querying-with-rails/#comment-788</guid>
		<description>Well written plugin, but why not just dump the schema in native sql?

# File: config/environment.rb
config.active_record.schema_format = :sql</description>
		<content:encoded><![CDATA[<p>Well written plugin, but why not just dump the schema in native sql?</p>
<p># File: config/environment.rb<br />
config.active_record.schema_format = :sql</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tessa Lau</title>
		<link>http://mandhro.com/2006/11/20/using-mysql-full-text-querying-with-rails/comment-page-1/#comment-282</link>
		<dc:creator>Tessa Lau</dc:creator>
		<pubDate>Fri, 26 Jan 2007 20:48:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.mandhro.com/2006/11/20/using-mysql-full-text-querying-with-rails/#comment-282</guid>
		<description>Nevermind -- I had forgotten to rename my index to have the FullText_ prefix.</description>
		<content:encoded><![CDATA[<p>Nevermind &#8212; I had forgotten to rename my index to have the FullText_ prefix.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tessa Lau</title>
		<link>http://mandhro.com/2006/11/20/using-mysql-full-text-querying-with-rails/comment-page-1/#comment-281</link>
		<dc:creator>Tessa Lau</dc:creator>
		<pubDate>Fri, 26 Jan 2007 20:01:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.mandhro.com/2006/11/20/using-mysql-full-text-querying-with-rails/#comment-281</guid>
		<description>I can&#039;t seem to get this to do anything.  I unzipped this into vendor/plugins, and ran rake db_schema_dump.  The db/schema.rb file still has the same add_index call which fails on the TEXT field.  Do I need to do something else to install the plugin?</description>
		<content:encoded><![CDATA[<p>I can&#8217;t seem to get this to do anything.  I unzipped this into vendor/plugins, and ran rake db_schema_dump.  The db/schema.rb file still has the same add_index call which fails on the TEXT field.  Do I need to do something else to install the plugin?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.290 seconds -->
<!-- Cached page served by WP-Cache -->
