<?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>AmethystRSS Blog</title>
	<atom:link href="http://blog.AmethystRSS.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.AmethystRSS.net</link>
	<description>Managing the RSS Firehose</description>
	<lastBuildDate>Tue, 21 Feb 2012 17:00:46 +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>linkrdr</title>
		<link>http://blog.AmethystRSS.net/2012/02/21/linkrdr/</link>
		<comments>http://blog.AmethystRSS.net/2012/02/21/linkrdr/#comments</comments>
		<pubDate>Tue, 21 Feb 2012 17:00:46 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[RSS]]></category>

		<guid isPermaLink="false">http://blog.AmethystRSS.net/?p=649</guid>
		<description><![CDATA[Linkrdr is a new Web RSS reader with claims similar to Amethyst and a very different approach. They went public yesterday and are making changes rapidly. After I had added a dozen feeds that I read often, they announce OPML import support. The initial ranking before I started reading anything was basically the more links [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.linkrdr.com">Linkrdr</a> is a new Web RSS reader with claims similar to Amethyst and a very different approach.  They went public yesterday and are making changes rapidly.  After I had added a dozen feeds that I read often, they announce OPML import support.  The initial ranking before I started reading anything was basically the more links in my feeds and in the posts they point to a topic, the higher the &#8220;relevance&#8221;.  Reading several dozen posts did not seem to materially alter the order.  This morning they announced a new ranking algorithm and the ordering of posts is starting to reflect my interests.</p>
<p>I still prefer Amethyst.  Linkrdr shows the most promise of any other RSS reader I&#8217;ve tried.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.AmethystRSS.net/2012/02/21/linkrdr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Faraday?</title>
		<link>http://blog.AmethystRSS.net/2012/02/06/faraday/</link>
		<comments>http://blog.AmethystRSS.net/2012/02/06/faraday/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 18:40:08 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Developing Amethyst]]></category>
		<category><![CDATA[RoR]]></category>
		<category><![CDATA[RSS]]></category>

		<guid isPermaLink="false">http://blog.AmethystRSS.net/?p=644</guid>
		<description><![CDATA[The most troublesome, ugly, bug infested code in Amethyst fetches RSS feeds in the face of Internet congestion, down servers, buggy RSS implementations, incorrect encodings, and so on. I&#8217;ve tried several times to clean it up, but it is dealing with messes, so it is messy. Mess is just part of its job. I&#8217;ve seen [...]]]></description>
			<content:encoded><![CDATA[<p>The most troublesome, ugly, bug infested code in Amethyst fetches RSS feeds in the face of Internet congestion, down servers, buggy RSS implementations, incorrect encodings, and so on.  I&#8217;ve tried several times to clean it up, but it is dealing with messes, so it is messy.  Mess is just part of its job.  I&#8217;ve seen BMW repair shops where you could sit on the floor and eat a picnic without worrying about your clothes and the food safety.  But I&#8217;ve never seen a garbage truck that didn&#8217;t smell.</p>
<p><a href="https://github.com/technoweenie/faraday">Faraday</a> is a library by Mislav, the author of mislav-will_paginate, a gem I (and many others) use for pagination in Ruby on Rails.  It is a very nice package.  Faraday is middleware for making HTTP request, the flip side of Rack, middleware for handling HTTP requests.  This is an intriguing idea.  I don&#8217;t think I can replace all my ugly RSS fetch code, but it looks like I can replace a lot of it and break the remainder up into smaller, more understandable bits.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.AmethystRSS.net/2012/02/06/faraday/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Even Faster XML Parsing</title>
		<link>http://blog.AmethystRSS.net/2012/01/28/even-faster-xml-parsing/</link>
		<comments>http://blog.AmethystRSS.net/2012/01/28/even-faster-xml-parsing/#comments</comments>
		<pubDate>Sat, 28 Jan 2012 16:15:12 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Developing Amethyst]]></category>
		<category><![CDATA[Padrino]]></category>
		<category><![CDATA[RSS]]></category>

		<guid isPermaLink="false">http://blog.AmethystRSS.net/?p=640</guid>
		<description><![CDATA[I wrote Fast XML Parsing in Ruby over last summer. It has a number of optimizations in it, including combining a bunch of string compares into one regular expression (regex) compare. It has bothered me it still does a series of bunch of string and regex compares, one after another until a match. They could [...]]]></description>
			<content:encoded><![CDATA[<p>I wrote Fast <a href="http://drdobbs.com/web-development/231903016#">XML Parsing in Ruby</a> over last summer.  It has a number of optimizations in it, including combining a bunch of string compares into one regular expression (regex) compare.  It has bothered me it still does a series of bunch of string and regex compares, one after another until a match.  They could be combined into one (unreadable) regex, if there was a simple (and fast) way to determine which matched.  Right now each regex or set of strings has a different action.  A single regex could cover all the valid matches, but how to determine which action?</p>
<p>I mentioned creating a Domain Specific Language (DSL) for this situation.  But there is already something like this, YACC (Yet Another Compiler Compiler).  It has been around for decades in the Unix world.  YACC handles LALR(1) languages.  Regular expressions are a subset of LALR(1) languages.</p>
<p>Bison is an open source version of YACC with some additional features.  Rbison claims to merge Ruby and Bison to produce a Ruby callable YACC parser (in C) with actions written in Ruby.  A great solution, except it has been abandoned by it creator and his repository taken down.  Rbison 0.0.7 is in a number of FreeBSD repositories.  I looked at it and it shows some work was done, but it is a long way from being usable.  The goal may be too ambitious or even impossible.</p>
<p>Racc is YACC written entirely in Ruby.  It is usable and I am working on using it speed up the RSS and OPML parsers described in the article.  The OPML parser is working &#8211; it passes the test suite and doesn&#8217;t blow up running the examples.  I haven&#8217;t pushed it to github yet.  I haven&#8217;t run any benchmarks yet, but my current thinking is that it will not be faster.  It is pure Ruby, while the Ruby regex library routines is in C.  I expect it can match a bunch of regex faster than a single Racc parser.</p>
<p>I expect to have the RSS parser converted to use Racc in the next few days.  I&#8217;ll post the benchmark results when complete, which ever way they turn out.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.AmethystRSS.net/2012/01/28/even-faster-xml-parsing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ActiveRecord callback methods deprecated in 2.3.8</title>
		<link>http://blog.AmethystRSS.net/2012/01/21/activerecord-callback-methods-deprecated-in-2-3-8/</link>
		<comments>http://blog.AmethystRSS.net/2012/01/21/activerecord-callback-methods-deprecated-in-2-3-8/#comments</comments>
		<pubDate>Sat, 21 Jan 2012 21:01:48 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Padrino]]></category>
		<category><![CDATA[RoR]]></category>

		<guid isPermaLink="false">http://blog.AmethystRSS.net/?p=631</guid>
		<description><![CDATA[According to this, instance callback instance were deprecated, starting in Rails 2.3.8. An instance callback method is like this: class Item < ActiveRecord::Base def before_create # whatever end end By ActiveRecord 3.1.3 (used in Padrino 0.10.5), instance callback method support is gone. The supported way to do the above is: class Item < ActiveRecord::Base before_create [...]]]></description>
			<content:encoded><![CDATA[<p>According to <a href="http://apidock.com/rails/ActiveRecord/Callbacks/before_create">this</a>, instance callback instance were deprecated, starting in Rails 2.3.8.  An instance callback method is like this:</p>
<pre>
class Item < ActiveRecord::Base
  def before_create
    # whatever
  end
end
</pre>
<p>By ActiveRecord 3.1.3 (used in Padrino 0.10.5), instance callback method support is gone.  The supported way to do the above is:</p>
<pre>
class Item < ActiveRecord::Base
  before_create :set_defaults

  def set_defaults
    # whatever
  end
end
</pre>
<p>ActiveRecord (AR) had two or more incompatible ways to specify callbacks: instance methods (1st example) and callback queues (2nd example).  If you have inherited AR classes (e.g. AdminUser is a child class of User, which is an AR) the instance method of the parent class is overridden and never called from child class instances.  With callback queues, all callbacks are called.  Current practice is described in <a href="http://api.rubyonrails.org/classes/ActiveRecord/Callbacks.html">ActiveRecord::Callbacks</a></p>
<p>In the Rails version of AmethystRSS.net, I'm using Rails 2.3.14 with instance callback methods, but not seeing any deprecation warnings.  Not sure why.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.AmethystRSS.net/2012/01/21/activerecord-callback-methods-deprecated-in-2-3-8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Padrino/Sinatra and AuthLogic</title>
		<link>http://blog.AmethystRSS.net/2012/01/19/padrinosinatra-and-authlogic/</link>
		<comments>http://blog.AmethystRSS.net/2012/01/19/padrinosinatra-and-authlogic/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 16:07:40 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Padrino]]></category>

		<guid isPermaLink="false">http://blog.AmethystRSS.net/?p=627</guid>
		<description><![CDATA[AuthLogic 3.1.0 doesn&#8217;t play nice with Sinatra 1.3.2. The error message is; `included': undefined method `before' for Sinatra::Request:Class (NoMethodError) The solution is to patch the last line of authlogic-3.1.0/lib/authlogic/controller_adapters/sinatra_adapter.rb from: Sinatra::Request.send(:include, Authlogic::ControllerAdapters::SinatraAdapter::Adapter::Implementation) to: Sinatra::Base.send(:include, Authlogic::ControllerAdapters::SinatraAdapter::Adapter::Implementation) Thank you to the post here (Google translation here)]]></description>
			<content:encoded><![CDATA[<p>AuthLogic 3.1.0 doesn&#8217;t play nice with Sinatra 1.3.2.  The error message is;</p>
<p><code>`included': undefined method `before' for Sinatra::Request:Class (NoMethodError)</code></p>
<p>The solution is to patch the last line of <code>authlogic-3.1.0/lib/authlogic/controller_adapters/sinatra_adapter.rb</code> from:</p>
<p><code>Sinatra::Request.send(:include, Authlogic::ControllerAdapters::SinatraAdapter::Adapter::Implementation)</code></p>
<p>to:</p>
<p><code>Sinatra::Base.send(:include, Authlogic::ControllerAdapters::SinatraAdapter::Adapter::Implementation)</code></p>
<p>Thank you to the post <a href="http://d.hatena.ne.jp/kakkunpakkun/20110711/1310367364">here</a> (Google translation <a href="http://translate.google.com/translate?hl=en&#038;sl=ja&#038;u=http://d.hatena.ne.jp/kakkunpakkun/20110711/1310367364&#038;ei=pS0YT_GDF-rY2AXvsIXgCw&#038;sa=X&#038;oi=translate&#038;ct=result&#038;resnum=8&#038;ved=0CFoQ7gEwBzgK&#038;prev=/search%3Fq%3D:in%2B%2560included%2527:%2Bundefined%2Bmethod%2B%2560before%2527%2Bfor%2BSinatra::Request:Class%2B%28NoMethodError%29%26start%3D10%26hl%3Den%26client%3Dfirefox-a%26sa%3DN%26rls%3Dorg.mozilla:en-US:official%26biw%3D1650%26bih%3D792%26prmd%3Dimvns">here</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.AmethystRSS.net/2012/01/19/padrinosinatra-and-authlogic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rails2 to Padrino &#8211; What to Change?</title>
		<link>http://blog.AmethystRSS.net/2012/01/18/rails2-to-padrino-what-to-change/</link>
		<comments>http://blog.AmethystRSS.net/2012/01/18/rails2-to-padrino-what-to-change/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 17:11:25 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Padrino]]></category>

		<guid isPermaLink="false">http://blog.AmethystRSS.net/?p=623</guid>
		<description><![CDATA[It is tempting to do some substantial rewrites during migration to a new platform. Experience has shown that it is rarely a good idea. Just the migration itself is enough disruption &#8211; ActiveRecord (AR) and ActiveSupport 2.3 to 3.1, Rails controller syntax to Padrino/Sinatra, Ruby 1.8.7 to 1.9.2 and the string encoding issues. As mentioned [...]]]></description>
			<content:encoded><![CDATA[<p>It is tempting to do some substantial rewrites during migration to a new platform.  Experience has shown that it is rarely a good idea.  Just the migration itself is enough disruption &#8211; ActiveRecord (AR) and ActiveSupport 2.3 to 3.1, Rails controller syntax to Padrino/Sinatra, Ruby 1.8.7 to 1.9.2 and the string encoding issues.</p>
<p>As mentioned in a <a href="http://blog.amethystrss.net/2012/01/18/approaching-rails2-to-padrino-migration-gonogo/">previous post</a>, I did benchmark some of the alternatives.  ERB to Erubis is a minor change.  I have already migrated from the Prototype Javascript library to jQuery&#8217;s compatibility mode. As templates are edited, I&#8217;ll move to jQuery native mode and make use of jQuery Unobtrusive JavaScript (UJS).</p>
<p>I&#8217;m tempted to move to more or all rendering and some data caching on the browser with the server just rendering JSON.  That will wait until after the migration to Padrino.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.AmethystRSS.net/2012/01/18/rails2-to-padrino-what-to-change/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Approaching Rails2 to Padrino Migration Go/Nogo</title>
		<link>http://blog.AmethystRSS.net/2012/01/18/approaching-rails2-to-padrino-migration-gonogo/</link>
		<comments>http://blog.AmethystRSS.net/2012/01/18/approaching-rails2-to-padrino-migration-gonogo/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 16:57:51 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Padrino]]></category>

		<guid isPermaLink="false">http://blog.AmethystRSS.net/?p=620</guid>
		<description><![CDATA[I ported a very minimal part of AmethystRSS.net to Padrino. It looks good. Before I really start full-time, I tried out a few alternatives. Amethyst has an inherent responsiveness problem, e.g. rendering 300 partials with 5 links and a couple of bits of text while the user waits. Caching helps, the second time they access [...]]]></description>
			<content:encoded><![CDATA[<p>I ported a very minimal part of AmethystRSS.net to Padrino.  It looks good.  Before I really start full-time, I tried out a few alternatives.  Amethyst has an inherent responsiveness problem, e.g. rendering 300 partials with 5 links and a couple of bits of text while the user waits.  Caching helps, the second time they access the list.  And the list ages rapidly, 50-70 new items a day.  Wait three days to check your RSS feeds and all 300 are new.</p>
<p>So I benchmarked some of the alternatives &#8211; 300 items, each with 2 links and a couple of bits of text in a zebra-striped table (CSS courtesy of Twitter&#8217;s Bootstrap project), MySQL (w/ mysql2 adapter), 2700+ items in the DB.  Response times are measured in Firebug, i.e. end to end as seen from the browser, both it and the server on the same laptop.  HAML is 8% slower than ERB.  ERB is 2% slower than Erubis.  DataMapper is 7% slower than ActiveRecord 3.1.  This last one is a bit surprising.  I&#8217;m going to dig into it a little more.  Plus figuring out how to store all times in UTC and display them in the user&#8217;s local time in DataMapper.</p>
<p>None of the performance differences are deal killers.  My templates are ERB, I&#8217;ll leave them that way.  My models are written for ActiveRecord 2.3.x.  I&#8217;ll stick with it unless I find out how to achieve a lot more speed with DataMapper.</p>
<p>If you select HAML during project generation, ERB is available too.  This suggests the possibility of fast prototyping in HAML and converting frequently used templates to ERB when stable.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.AmethystRSS.net/2012/01/18/approaching-rails2-to-padrino-migration-gonogo/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Character Encoding w/ Padrino, AR, MySQL, and Ruby 1.9</title>
		<link>http://blog.AmethystRSS.net/2012/01/13/character-encoding-w-padrino-ar-mysql-and-ruby-1-9/</link>
		<comments>http://blog.AmethystRSS.net/2012/01/13/character-encoding-w-padrino-ar-mysql-and-ruby-1-9/#comments</comments>
		<pubDate>Fri, 13 Jan 2012 19:02:13 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Padrino]]></category>

		<guid isPermaLink="false">http://blog.AmethystRSS.net/?p=616</guid>
		<description><![CDATA[Exceptions were occasionally occurring in Padrino: Encoding::CompatibilityError - incompatible character encodings: UTF-8 and ASCII-8BIT:. This is with Ruby 1.9.2. Googling the error message turned up plenty of hits, none of them helpful. Trying the same thing in the Padrino Framework Google Group was more helpful, but a key piece of information was missing. Or since [...]]]></description>
			<content:encoded><![CDATA[<p>Exceptions were occasionally occurring in Padrino: <code>Encoding::CompatibilityError - incompatible character encodings: UTF-8 and ASCII-8BIT:</code>.  This is with Ruby 1.9.2.  Googling the error message turned up plenty of hits, none of them helpful.  Trying the same thing in the Padrino Framework Google Group was more helpful, but a key piece of information was missing.  Or since the posts were a year and a half ago, things changed.  The <code>mysql</code> gem encodes all strings as 8BIT ASCII!  Even if the database is UTF-8.  Switching to the msyql2 gem <em>and</em> setting the adapter to <code>mysql2</code> in <code>config/database.yml</code> solved the problem.  If your don&#8217;t set the adapter correctly, Padrino complains about stack too deep.  I encountered the same stack overflow with <code>ruby-mysql</code>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.AmethystRSS.net/2012/01/13/character-encoding-w-padrino-ar-mysql-and-ruby-1-9/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting DB Timezone in Padrino</title>
		<link>http://blog.AmethystRSS.net/2012/01/11/setting-db-timezone-in-padrino/</link>
		<comments>http://blog.AmethystRSS.net/2012/01/11/setting-db-timezone-in-padrino/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 18:24:07 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Padrino]]></category>

		<guid isPermaLink="false">http://blog.AmethystRSS.net/?p=612</guid>
		<description><![CDATA[All timestamps in Amethyst&#8217;s database are in UTC.  Out of the box, Padrino and ActiveRecord assume they are in the local timezone. There may be a better way (i.e., ORM agnostic), but this works for ActiveRecord.  In config/boot.rb: ## # Add your before load hooks here # Padrino.before_load do I18n.locale = :en ActiveRecord::Base.time_zone_aware_attributes = true [...]]]></description>
			<content:encoded><![CDATA[<p>All timestamps in Amethyst&#8217;s database are in UTC.  Out of the box, Padrino and ActiveRecord assume they are in the local timezone. There may be a better way (i.e., ORM agnostic), but this works for ActiveRecord.  In <code>config/boot.rb</code>:<br />
<code><br />
##<br />
# Add your before load hooks here<br />
#<br />
Padrino.before_load do<br />
I18n.locale = :en<br />
ActiveRecord::Base.time_zone_aware_attributes = true<br />
ActiveRecord::Base.default_timezone = :utc<br />
end<br />
</code></p>
<p>The first assignment sets the default locale (found this in the <a href="http://www.padrinorb.com/guides/localization">Padrino Localization guide</a>).  The next two are ActiveRecord specific.  I dug into the Rails <code>lib/initializer.rb</code> code to find them.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.AmethystRSS.net/2012/01/11/setting-db-timezone-in-padrino/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Investigating Padrino</title>
		<link>http://blog.AmethystRSS.net/2012/01/11/investigating-padrino/</link>
		<comments>http://blog.AmethystRSS.net/2012/01/11/investigating-padrino/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 18:11:50 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Padrino]]></category>

		<guid isPermaLink="false">http://blog.AmethystRSS.net/?p=600</guid>
		<description><![CDATA[Rails 3 has outgrown my needs.  I spent a day and a half trying to migrate Amethyst from Rails 2.3 to Rails 3.0 and didn&#8217;t appear to be any closer to being done.  And I encountered a number of Rails3 bugs and/or incompatibilities that had no obvious fix. Watching Rails 3 development, I see it [...]]]></description>
			<content:encoded><![CDATA[<p>Rails 3 has outgrown my needs.  I spent a day and a half trying to migrate Amethyst from Rails 2.3 to Rails 3.0 and didn&#8217;t appear to be any closer to being done.  And I encountered a number of Rails3 bugs and/or incompatibilities that had no obvious fix.</p>
<p>Watching Rails 3 development, I see it creeping down the slope of being all things to all Web developers with lots of new, shiny thrown in for good measure.  There are a lot of moving parts.  (I need to install a Javascript interpreter?  Really?)  Rails3 was supposed to be much more modularized and configurable, cherry picking just the pieces I need, but I may have to install everything and then try and back out unneeded pieces.</p>
<p>Rails was originally developed by someone writing lots of Websites.  They climb the initial, steep learning curve once and then can crank out product at a ferocious rate.  The Website part of Amethyst is relatively straight forward.  It&#8217;s the scoring and the backend (i.e., non-Rails parts) that are the secret sauce.  And much of the Rails2 and Rails3 magic costs too much in terms of user response times (i.e. the routing magic &#8211; I&#8217;ve reverted to string interpolation for URLs).</p>
<p>I&#8217;m investigating migrating to <a href="http://www.padrinorb.com">Padrino</a>, a Web framework built on top of Sinatra.  Padrino claims to be 3-5 times faster than Rails.  My first cut using the simplest usable piece of Amethyst (viewing the articles in a whitelisted subset of the RSS feeds subscribed to) is appropriately twice as fast.  But it doesn&#8217;t yet have pagination or caching.  I expect the former to slightly slow it down and the former to significantly speed it up.  I&#8217;ll be blogging on my progress, the problems I encounted (and solutions when I find them), and how satisfactory I find Padrino.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.AmethystRSS.net/2012/01/11/investigating-padrino/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

