<?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>Meta Bates &#187; cachetastic</title>
	<atom:link href="http://www.metabates.com/tag/cachetastic/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.metabates.com</link>
	<description>The technical ramblings of Mark Bates.</description>
	<lastBuildDate>Wed, 01 Feb 2012 16:25:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Cachetastic 3.0.0 Released</title>
		<link>http://www.metabates.com/2009/06/18/cachetastic-3-0-0-released/</link>
		<comments>http://www.metabates.com/2009/06/18/cachetastic-3-0-0-released/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 02:07:10 +0000</pubDate>
		<dc:creator>Mark Bates</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Releases]]></category>
		<category><![CDATA[active record]]></category>
		<category><![CDATA[cachetastic]]></category>
		<category><![CDATA[configatron]]></category>
		<category><![CDATA[memcache]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[release]]></category>

		<guid isPermaLink="false">http://www.metabates.com/?p=237</guid>
		<description><![CDATA[After more than two years powering production level applications I found that Cachetastic was starting to get a bit long in the tooth. I felt that there was a lot I could to make Cachetastic an even better library than it already was. I thought that I had added a bunch of cruft to the [...]]]></description>
			<content:encoded><![CDATA[<p>After more than two years powering production level applications I found that Cachetastic was starting to get a bit long in the tooth. I felt that there was a lot I could to make Cachetastic an even better library than it already was. I thought that I had added a bunch of cruft to the framework that people were just not using and maintaining it all seemed like a bit of a pointless chore.</p>
<p>So what was I unhappy about?</p>
<h3>Configuration:</h3>
<p>I was pretty unhappy with the way configuration was being done. I liked using Configatron to power the configuration, but I didn&#8217;t like the way I implemented the way I was using Configatron. For example, to set up one of the default settings, like the expiry time, you would configure it like such:</p>
<pre>configatron.cachetastic_default_options.expiry_time = 30.minutes</pre>
<p>Now you would configure that same option like this:</p>
<pre>configatron.cachetastic.defaults.expiry_time = 30.minutes</pre>
<p>That&#8217;s a little savings, but it really hits when you want to configure a particular cache. Let&#8217;s say we a cache called My::Super::AwesomeCache, to configure it in past versions of Cachetastic we would do this:</p>
<pre>configatron.my_super_awesome_cache_options.expiry_time = 15.minutes</pre>
<p>Now in Cachetastic 3.0.0 we configure like this:</p>
<pre>configatron.cachetastic.my.super.awesome_cache.expire_time = 15.minutes.</pre>
<p>As you can see all configuration now happens under the cachetastic namespace in Configatron. Then it&#8217;s a matter of using a Configatron namespace for each of your modules. I find it a lot easier to manage.</p>
<p>Another change in configuration is that in previous versions if you wanted to override one default configuration value for a particular cache,  you had to override them all. Now, you can just override the one value  you want, and the rest will be nicely inherited from the defaults.</p>
<h3>Speed</h3>
<p>Cachetastic has always been a very fast library, but I knew that more could be squeezed from that stone. With Cachetastic 3.0.0 you now get a hefty 25% improvement in the Memcached adapter and a whopping 99% in the LocalMemory adapter! Those are pretty awesome numbers. These numbers were easy to achieve when I stepped back and examined what it was I really wanted to do, and picked the most straightforward path to that goal.</p>
<h3>Bloat</h3>
<p>After more than two years Cachetastic was starting to suffer from a severe case of bloat. For example, I&#8217;ve never used the DRb adapter, have you? So why is it there? The same goes for the HtmlFile adapter. I wrote that because at my last job the operations team weren&#8217;t savvy  enough to be able to get Apache to talk to Memcached, so they wanted to serve HTML files, hence the rather awful adapter. Both of those adapters are now history.</p>
<p>There also used to be support for Rails Session Caching. Considering that most people are now using the Cookie store for sessions, there really is no need for this cache. It could also be argued that it should not have been bundled with Cachetastic at all. I would agree with those arguments. Cachetastic is, and should always be, a standalone caching framework, that can be plugged into Rails or any plain old Ruby project that needs caching support.</p>
<p>Also purged is automatic support for mixing in the Cachetastic::Cacheable module into ActiveRecord. If you want this functionality, it is very easy to include in your application. I don&#8217;t want to force it on anyone, so that is gone now.</p>
<p>Finally there are a handful of smaller features that I&#8217;m sure no one will miss that I&#8217;ve yanked out in the name of performance, reliability, and ease of maintenance.</p>
<h3>Nice and Clean</h3>
<p>When I realized what I really wanted, and what I didn&#8217;t want, it became clear that what was needed was a fresh code base. With that said, I hit delete (well, not really) and started over again. The code is now smooth, so much easier to read, and fast. In previous versions even my eyes went a bit crossed when I tried to figure out exactly what was going on. There where quite a few levels of indirection, and things just weren&#8217;t place where they probably should&#8217;ve been. That has all been fixed.</p>
<p>With a nice, clean code base comes a brand new set of tests. The tests are now extremely comprehensive, and while 2.x was very well tested, I know that 3.0.0, is tested to the hilt.</p>
<p>Because 3.0.0 is a brand new code base, I should probably stress the fact that is <strong>NOT</strong> backward compatible. So please be advised.</p>
<h3>Installation:</h3>
<pre>$ sudo gem install cachetastic</pre>
<h3>Conclusion</h3>
<p>I really hope everyone likes this brand new version of Cachetastic. I&#8217;m very happy with it, and I think if you give it a chance, you will be too.</p>
<p>If you&#8217;d like to have a peek at the RDoc, it can be found at:<br />
<a href="http://cachetastic-api.mackframework.com/">http://cachetastic-api.mackframework.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.metabates.com/2009/06/18/cachetastic-3-0-0-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configatron 2.2.0 Released, now with Ruby 1.9 and JRuby support!</title>
		<link>http://www.metabates.com/2009/01/01/configatron-220-released-now-with-ruby-19-and-jruby-support/</link>
		<comments>http://www.metabates.com/2009/01/01/configatron-220-released-now-with-ruby-19-and-jruby-support/#comments</comments>
		<pubDate>Thu, 01 Jan 2009 16:31:00 +0000</pubDate>
		<dc:creator>Mark Bates</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Updates]]></category>
		<category><![CDATA[cachetastic]]></category>
		<category><![CDATA[configatron]]></category>
		<category><![CDATA[genosaurus]]></category>
		<category><![CDATA[jruby]]></category>
		<category><![CDATA[mack]]></category>
		<category><![CDATA[multiruby]]></category>
		<category><![CDATA[rspec]]></category>
		<category><![CDATA[ruby 1.9]]></category>

		<guid isPermaLink="false">http://www.mackframework.com/?p=210</guid>
		<description><![CDATA[Happy New Year everyone! With the help of the absolutely amazing multiruby library and an edge version of rspec from GitHub, the latest version of Configatron now supports JRuby 1.1.6 and Ruby 1.9.1rc1. There are no other functional changes to the library, so it&#8217;s a full drop in replacement for vesion 2.1.6. I highly encourage [...]]]></description>
			<content:encoded><![CDATA[<p>Happy New Year everyone!</p>
<p>With the help of the absolutely amazing <a href="http://blog.robseaman.com/2008/12/20/switching-between-ruby-1-8-1-9-with-multiruby" target="_blank">multiruby</a> library and an edge version of rspec from GitHub, the latest version of Configatron now supports JRuby 1.1.6 and Ruby 1.9.1rc1. There are no other functional changes to the library, so it&#8217;s a full drop in replacement for vesion 2.1.6.</p>
<p>I highly encourage everyone to checkout multiruby and start upgrading their libraries so we can all move to 1.9 quicker, which means more speed and more power. Once we&#8217;re all in 1.9 land we can really make use of some of the amazing features it provides.</p>
<p>Anyway, I&#8217;ll be working on upgrading all my libraries and applications to work on 1.8 and 1.9, and hopefully JRuby, over the next couple of months. So be on the look out for a new versions of Cachetastic, Genosaurus [update: Genosaurus already works with 1.9 and JRuby. Hoorah!], and, of course, Mack.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.metabates.com/2009/01/01/configatron-220-released-now-with-ruby-19-and-jruby-support/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Release 0.8.0</title>
		<link>http://www.metabates.com/2008/10/06/release-080/</link>
		<comments>http://www.metabates.com/2008/10/06/release-080/#comments</comments>
		<pubDate>Mon, 06 Oct 2008 16:06:32 +0000</pubDate>
		<dc:creator>Mark Bates</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Releases]]></category>
		<category><![CDATA[Updates]]></category>
		<category><![CDATA[assets]]></category>
		<category><![CDATA[cachetastic]]></category>
		<category><![CDATA[configatron]]></category>
		<category><![CDATA[logging]]></category>
		<category><![CDATA[mack]]></category>
		<category><![CDATA[release]]></category>
		<category><![CDATA[routes]]></category>
		<category><![CDATA[routing]]></category>

		<guid isPermaLink="false">http://www.mackframework.com/?p=190</guid>
		<description><![CDATA[Here it is the 0.8.0 release of Mack! What a fun and exciting release it is as well. There are a few big changes under the hood, all for the better of course, but there&#8217;s only really one that will cause existing Mack projects some conversion pain. However, we&#8217;ve tried to take the sting out [...]]]></description>
			<content:encoded><![CDATA[<p>Here it is the 0.8.0 release of Mack! What a fun and exciting release it is as well. There are a few big changes under the hood, all for the better of course, but there&#8217;s only really one that will cause existing Mack projects some conversion pain. However, we&#8217;ve tried to take the sting out of that with a helpful rake task.</p>
<h3>Configatron Support</h3>
<p>Mack 0.8.0 replaces the old application_configuration system with the new ultra sexy and cool, <a href="http://www.mackframework.com/2008/10/03/configatron-214-released/">Configatron</a> system. This is a much better way of doing system configurations, and I&#8217;m sure you&#8217;ll agree once you give it a spin. We&#8217;ve tried to take the edge off the conversion of these configuration systems with a helpful little rake task:</p>
<pre>$&nbsp;rake mack:update:configuration</pre>
<p>For most cases, that task should do just fine. There might be a few places you have to tweak, such as in your own code, but once you do that, you&#8217;ll love Configatron!</p>
<p>For more information about using Configatron checkout this page:</p>
<p><a href="http://www.mackery.com/configuration/configatron">http://www.mackery.com/configuration/configatron</a></p>
<h3>A New Router</h3>
<p>That&#8217;s right, the router in Mack has been completely rewritten from the ground up, yet unlike other frameworks, we&#8217;ve managed to keep our external API the same, so you don&#8217;t have to change your routes.rb at all. <img src='http://www.metabates.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  That&#8217;s a bit of good news, isn&#8217;t it?</p>
<p>What do you get with the new router? Well, for one, it should be faster, that&#8217;s always a plus. You can also now do &#8216;wildcard&#8217; parameters in routes, use procs, extended &#8216;resourced&#8217; routes, define &#8216;host&#8217; and &#8216;scheme&#8217; parameters, use regular expressions, and a few other little nifty things. Plus, because of the rewrite, it&#8217;s going to make it easier to extending the routing system to be even more powerful! In a future release, sometime in the 0.8.x series, you&#8217;ll even be able to plugin in your own router just by implementing a few API methods.</p>
<p>For more information about the new router, and what you can do, check out:</p>
<p><a href="http://www.mackery.com/routing/index">http://www.mackery.com/routing/index</a></p>
<h3>Asset Management</h3>
<p>There is now a really great asset management system that easily allows you to build bundles of CSS and JavaScript files to help keep your code neat and easy to use. Bundle that with the new mack-asset_packager gem, and support for asset hosts, you get a simple, easy, and fast way to compress and deliver your assets.&nbsp;</p>
<p>For more information, checkout these helpful pages from the user guide:</p>
<p><a href="http://www.mackery.com/views/asset_mgr">http://www.mackery.com/views/asset_mgr</a><br />
<a href="http://www.mackery.com/views/asset_host">http://www.mackery.com/views/asset_host</a>&nbsp;</p>
<h3>Misc.</h3>
<p>As always, there&#8217;s a bunch of other great stuff just lurking around in this release. A better logger, for a start, more helpers, bug fixes, better error reporting, default 404 and 500 pages, and more. Please download and enjoy the release, I&#8217;m sure you&#8217;ll find worth it. Enjoy!</p>
<p>Changelog:</p>
<ol>
<li>[#187] Fixed: When an exception is raised, the request doesn&#8217;t get &#8216;logged&#8217;</li>
<li>[#185] Fixed: .html is being appended to logged requests when there&#8217;s a 404</li>
<li>[#184] Request logging should also print the message of the status code</li>
<li>[#183] Updates to asset mgr/host</li>
<li>[#181] Content-type can now be set with calling render.</li>
<li>[#179] When configatron.mack.show_exceptions is false you now either the public/404.html or public/500.html file.</li>
<li>[#178] Added a configure parameter to turn off log coloring</li>
<li>[#176] Added a Google Analytics helper.</li>
<li>[#175] Generating urls should use host or scheme if defined</li>
<li>[#171] Ability to extend resources in routes</li>
<li>[#170] Regex support in routes</li>
<li>[#169] Proc support for Routes</li>
<li>[#168] Fixed ERB errors not being reported correctly.</li>
<li>[#167] Rake task to convert app config yamls to configatron</li>
<li>[#165] Asset Packager</li>
<li>[#164] Response helper for &#8216;attachments&#8217;</li>
<li>[#159] Added link_unless_current and link_if helpers</li>
<li>[#156] Added &#8216;Wildcard&#8217; Routes support</li>
<li>[#152] INCOMPATIBILITY NOTICE: Removed deprecated support for delivered_emails use delivered_notifiers instead.</li>
<li>[#138] Added support for &#8216;host&#8217; &amp; &#8216;scheme&#8217; parameters in routes</li>
<li>[#135] Replaced log4r with logging gem.</li>
<li>[#119] Freeze gems</li>
<li>[#106] INCOMPATIBILITY NOTICE: Removed deprecated support for droute_url</li>
<li>[#93] INCOMPATIBILITY NOTICE: Removed deprecated support for &#8216;top&#8217; level ApplicationHelper</li>
<li>[#23] INCOMPATIBILITY NOTICE: Removed support for application_configuration and added support for configatron</li>
<li>gem: logging 0.9.4</li>
<li>gem: thin 1.0.0</li>
<li>gem: rspec 1.1.8</li>
<li>gem: configatron 2.1.4</li>
<li>gem: cachetastic 2.0.0</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.metabates.com/2008/10/06/release-080/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Release 0.7.1</title>
		<link>http://www.metabates.com/2008/09/08/release-071/</link>
		<comments>http://www.metabates.com/2008/09/08/release-071/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 15:15:50 +0000</pubDate>
		<dc:creator>Mark Bates</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Releases]]></category>
		<category><![CDATA[Updates]]></category>
		<category><![CDATA[cachetastic]]></category>
		<category><![CDATA[cookie]]></category>
		<category><![CDATA[data mapper]]></category>
		<category><![CDATA[diogo almeida]]></category>
		<category><![CDATA[facets]]></category>
		<category><![CDATA[genosaurus]]></category>
		<category><![CDATA[rack]]></category>
		<category><![CDATA[release]]></category>
		<category><![CDATA[session]]></category>
		<category><![CDATA[xss]]></category>

		<guid isPermaLink="false">http://www.mackframework.com/?p=167</guid>
		<description><![CDATA[Although not as sexy a release as 0.7.0, there are some very important bug fixes and some cool new little features in this release. Rack has been upgraded to v0.4.0. DataMapper to 0.9.5. Facets to 2.4.4, and a few other gems as well. There is now a much nicer session store API that will allow [...]]]></description>
			<content:encoded><![CDATA[<div>
<p>Although not as sexy a release as 0.7.0, there are some very important bug fixes and some cool new little features in this release. Rack has been upgraded to v0.4.0. DataMapper to 0.9.5. Facets to 2.4.4, and a few other gems as well.</p>
<p>There is now a much nicer session store API that will allow developers to build their own session stores. There&#8217;s also a couple of new session stores that ship with 0.7.1. There&#8217;s a DataMapper session store, and a cookie session store, which is now the default session store. The previous Cachetastic based session store can be used by requiring the mack-caching gem in gems.rb and putting the following setting in your app_config/*.yml file:</p>
<pre>mack::session_store: cachetastic</pre>
<p>There is now built-in support to help prevent cross-site scripting attacks on forms.&nbsp;Some view helper methods have nice updates such as :disable_with and :confirm, and asset hosts.</p>
<p>And a whole host of other little improvements across the board. Enjoy!</p>
<p>Changelog:</p>
<ul>
<li>[#153] Emails with just a single &#8216;part&#8217; are now being sent correctly.</li>
<li>[#147] Added :confirm to button helpers.</li>
<li>[#146] [Diogo Almeida] Added :disable_with to submit_button form helper.</li>
<li>[#145] Added rake generate:&lt;generator_name&gt;:desc task to &#8216;describe&#8217; a Genosaurus generator</li>
<li>[#144] INCOMPATIBILITY NOTICE: rake server is no more. Please use mackery server instead.</li>
<li>[#142] INCOMPATIBILITY NOTICE: rake console is no more. Please use mackery console instead.</li>
<li>[#140] Added Mack::BootLoader</li>
<li>[#139] Added ability to change the pattern for test files</li>
<li>[#137] Added subdomains method on request.</li>
<li>[#130] Added ability to &#8216;reload&#8217; the console</li>
<li>[#129] DataMapper 0.9.5 support</li>
<li>[#128] Updated json_pure to 1.1.3 and removed ruby-debug dependency</li>
<li>[#127] Moved mack-paths into core</li>
<li>[#126] XSS Prevention</li>
<li>[#125] Cookie store is now the default session store, not cachetastic</li>
<li>[#124] Opened up the session store API</li>
<li>[#122] Added DataMapper session store.</li>
<li>[#121] Cookie session store support.</li>
<li>[#120] Added PassengerGenerator to generate the necessary files to run Mack with Passenger Phusion (mod_rails)</li>
<li>[#118] Mack/mack-more can be loaded from vendor/framework/mack and vendor/framework/mack-more</li>
<li>[#117] Added rake task: mack:freeze:edge</li>
<li>[#107] Updated to Rack 0.4.0</li>
<li>[#95] Removed deprecated model_* methods</li>
<li>[#94] Removed deprecated submit_tag</li>
<li>[#40] Added Mack::Utils::ContentLengthHandler so response will now have &#8216;Content-Length&#8217; in its header.</li>
<li>[#21] Asset Hosts</li>
<li>gem: rack 0.4.0</li>
<li>gem: json_pure 1.1.3</li>
<li>gem: data_mapper 0.9.5</li>
<li>gem: genosaurus 1.2.4</li>
<li>gem: ezcrypto 0.7</li>
<li>gem: facets 2.4.4</li>
</ul>
<p>Â </p>
<p>Â </p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.metabates.com/2008/09/08/release-071/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Patch Releases 0.7.0.1 and 0.6.1.2</title>
		<link>http://www.metabates.com/2008/08/29/patch-releases-0701-and-0612/</link>
		<comments>http://www.metabates.com/2008/08/29/patch-releases-0701-and-0612/#comments</comments>
		<pubDate>Fri, 29 Aug 2008 15:48:57 +0000</pubDate>
		<dc:creator>Mark Bates</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Releases]]></category>
		<category><![CDATA[Updates]]></category>
		<category><![CDATA[application_configuration]]></category>
		<category><![CDATA[cachetastic]]></category>
		<category><![CDATA[configatron]]></category>
		<category><![CDATA[release]]></category>

		<guid isPermaLink="false">http://www.mackframework.com/?p=151</guid>
		<description><![CDATA[Today two patches to Mack have been released, 0.7.0.1 and 0.6.1.2. They upgrade the version of application_configuration and are highly recommended. There was a bug with application_configuration that could cause it to stop loading configuration settings, which obviously, would be bad. Please update your version of Mack accordingly.&#160; As a side note, Mack will be [...]]]></description>
			<content:encoded><![CDATA[<p>Today two patches to Mack have been released, 0.7.0.1 and 0.6.1.2. They upgrade the version of application_configuration and are highly recommended. There was a bug with application_configuration that could cause it to stop loading configuration settings, which obviously, would be bad. <img src='http://www.metabates.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Please update your version of Mack accordingly.&nbsp;</p>
<p>As a side note, Mack will be moving away from application_configuration to configatron around version 0.8.0, but more on that later.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.metabates.com/2008/08/29/patch-releases-0701-and-0612/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ruby Opals</title>
		<link>http://www.metabates.com/2008/06/23/ruby-opals/</link>
		<comments>http://www.metabates.com/2008/06/23/ruby-opals/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 18:14:57 +0000</pubDate>
		<dc:creator>Mark Bates</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[cachetastic]]></category>
		<category><![CDATA[gems]]></category>
		<category><![CDATA[genosaurus]]></category>
		<category><![CDATA[mack]]></category>
		<category><![CDATA[ruby opals]]></category>
		<category><![CDATA[tracy flynn]]></category>

		<guid isPermaLink="false">http://www.mackframework.com/?p=108</guid>
		<description><![CDATA[At RubyConf a bunch of us sat around a few glasses of beer and had a &#8216;bitch&#8217; session about the state of Ruby Gems, a system we all consider be rather sub-par. At that session Tracy Flynn, friend andÂ colleague of yours truly, said we should do something about it. He suggested we write RubyOpals. Well, [...]]]></description>
			<content:encoded><![CDATA[<p>At RubyConf a bunch of us sat around a few glasses of beer and had a &#8216;bitch&#8217; session about the state of Ruby Gems, a system we all consider be rather sub-par. At that session Tracy Flynn, friend andÂ colleague of yours truly, said we should do something about it. He suggested we write RubyOpals. Well, Tracy is putting his money where his mouth is,Â <a href="http://github.com/tflynn/rubyopals/tree/master" target="_blank">http://github.com/tflynn/rubyopals/tree/master</a>. I can tell you that I for one, can&#8217;t wait for Ruby Opals! I&#8217;ve already forked the project and started contributing! As soon as the first version is ready for release, I can tell you that Mack, Cachetastic, Genosaurus, etc&#8230; will all be the first available as opals.</p>
<p>I highly encourage all of you out there to add this project to your &#8216;watch&#8217; list on GitHub. And if you have the time, and want to help write something special, I highly encourage you to fork it and start contributing! Time to get out there and start making the Ruby world a much, much, much better place.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.metabates.com/2008/06/23/ruby-opals/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cachetastic 1.7.0 Release</title>
		<link>http://www.metabates.com/2008/06/04/cachetastic-170-release/</link>
		<comments>http://www.metabates.com/2008/06/04/cachetastic-170-release/#comments</comments>
		<pubDate>Wed, 04 Jun 2008 14:42:53 +0000</pubDate>
		<dc:creator>Mark Bates</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[cachetastic]]></category>
		<category><![CDATA[drb]]></category>
		<category><![CDATA[memcache]]></category>

		<guid isPermaLink="false">http://www.mackframework.com/?p=104</guid>
		<description><![CDATA[The simple, yet extremely powerful, Ruby caching framework, Cachetastic has been upgraded to 1.7.0. The big new feature of this release is the Cachetastic::Cacheable module. Including this module allows any class to become a Cache. class Person include Cachetastic::Cacheable end Person.set_into_cache(:hi, "Hello There") Person.get_from_cache(:hi) #=&#62; "Hello There" Under the covers this creates a Cachetastic::Caches::Base object [...]]]></description>
			<content:encoded><![CDATA[<p>The simple, yet extremely powerful, Ruby caching framework, Cachetastic has been upgraded to 1.7.0. The big new feature of this release is the Cachetastic::Cacheable module. Including this module allows any class to become a Cache.</p>
<pre>class Person
include Cachetastic::Cacheable
end
Person.set_into_cache(:hi, "Hello There")
Person.get_from_cache(:hi) #=&gt; "Hello There"</pre>
<p>Under the covers this creates a Cachetastic::Caches::Base object and proxies requests to it. This is a very simple example and belies the richness of the Cachetastic library.Â </p>
<p><a href="http://cachetastic-api.mackframework.com/" target="_blank">http://cachetastic-api.mackframework.com/</a></p>
<p>Features:</p>
<ul>
<li>Flexible configuration. All caches have can either have their own configurations, or they can inherit from a default configuration.</li>
<li>Easy to use Adapter API. Included adapters include, LocalMemory, Memcache, DRb, File, and more. With the Adapter API being so simple, it&#8217;s easy to build your own custom adapter.</li>
<li>Flexible logging. Each cache can have it&#8217;s own loggers, or they can use the default logger.</li>
<li>JIT caching. Through Ruby&#8217;s powerful block structure, you can pass a block to a &#8216;get&#8217; call and have it run if the results from the get are either &#8216;nil&#8217; or &#8216;empty&#8217;</li>
<li>Cachetastic::Cacheable module turns any Object into a cache. It allows for any instance of that Object to cache and uncache itself.</li>
<li>And much more!</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.metabates.com/2008/06/04/cachetastic-170-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Release 0.2.0.1</title>
		<link>http://www.metabates.com/2008/03/14/release-0201/</link>
		<comments>http://www.metabates.com/2008/03/14/release-0201/#comments</comments>
		<pubDate>Sat, 15 Mar 2008 03:09:37 +0000</pubDate>
		<dc:creator>Mark Bates</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Releases]]></category>
		<category><![CDATA[Updates]]></category>
		<category><![CDATA[cachetastic]]></category>
		<category><![CDATA[distributed routes]]></category>
		<category><![CDATA[mack]]></category>
		<category><![CDATA[memcache]]></category>
		<category><![CDATA[release]]></category>
		<category><![CDATA[rubyforge]]></category>

		<guid isPermaLink="false">http://www.mackframework.com/2008/03/14/release-0201/</guid>
		<description><![CDATA[As previously mentioned there was an issue in a Mack dependency, cachetastic. Mack 0.2.0 used cachetastic-1.3.1 which had a require for the memcache-client gem. If you didn&#8217;t have the gem installed you would get some not very nice messages. This require was fixed in cachetastic-1.4.1. Mack 0.2.0.1 uses the new version of cachetastic. There is [...]]]></description>
			<content:encoded><![CDATA[<p>As previously mentioned there was an issue in a Mack dependency, cachetastic. Mack 0.2.0 used cachetastic-1.3.1 which had a require for the memcache-client gem.</p>
<p>If you didn&#8217;t have the gem installed you would get some not very nice messages. This require was fixed in cachetastic-1.4.1. Mack 0.2.0.1 uses the new version of cachetastic. There is no new functionality in 0.2.0.1, it&#8217;s simply the require fix.</p>
<p>Some really cool functionality is in the works for 0.3.0 of Mack, including everyone&#8217;s favorite, distributed routes. This, unfortunately, probably won&#8217;t be out till the end of next week.</p>
<pre>$ sudo gem install mack</pre>
<p>Like always, please allow time for the gem to propagate throughout the RubyForge mirrors.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.metabates.com/2008/03/14/release-0201/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Memcache issue with Mack 0.2.0</title>
		<link>http://www.metabates.com/2008/03/14/memcache-issue-with-mack-020/</link>
		<comments>http://www.metabates.com/2008/03/14/memcache-issue-with-mack-020/#comments</comments>
		<pubDate>Sat, 15 Mar 2008 02:46:51 +0000</pubDate>
		<dc:creator>Mark Bates</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[cachetastic]]></category>
		<category><![CDATA[mack]]></category>
		<category><![CDATA[memcache]]></category>

		<guid isPermaLink="false">http://www.mackframework.com/2008/03/14/memcache-issue-with-mack-020/</guid>
		<description><![CDATA[If you get this error: no such file to load -- memcache The problem is mack-0.2.0 uses the cachetastic-1.3.1 gem, which has an errant require in the memcache adapter. There will be a patch forthcoming for Mack to use the lastest version of cachetastic which solves this issue. Until that patch is out, the easiest [...]]]></description>
			<content:encoded><![CDATA[<p>If you get this error:</p>
<pre>no such file to load -- memcache</pre>
<p>The problem is mack-0.2.0 uses the cachetastic-1.3.1 gem, which has an errant require in the memcache adapter. There will be a patch forthcoming for Mack to use the lastest version of cachetastic which solves this issue.</p>
<p>Until that patch is out, the easiest thing to do is install the memcache-client gem, like such:</p>
<pre>$ sudo gem install memcache-client</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.metabates.com/2008/03/14/memcache-issue-with-mack-020/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Release 0.0.6.2</title>
		<link>http://www.metabates.com/2008/02/29/release-0062/</link>
		<comments>http://www.metabates.com/2008/02/29/release-0062/#comments</comments>
		<pubDate>Fri, 29 Feb 2008 22:32:27 +0000</pubDate>
		<dc:creator>Mark Bates</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Releases]]></category>
		<category><![CDATA[Updates]]></category>
		<category><![CDATA[cachetastic]]></category>
		<category><![CDATA[release]]></category>
		<category><![CDATA[rubyforge]]></category>
		<category><![CDATA[thin]]></category>

		<guid isPermaLink="false">http://www.mackframework.com/2008/02/29/release-0062/</guid>
		<description><![CDATA[Please allow for mirror prorogation.Â  Thanks to Matt Todd for finding the first official Mack bug! Strangely enough, I actually welcome people finding bugs in Mack. It only serves to make it a better framework. If you find a bug, please head on over to RubyForge and submit a ticket for it, and I&#8217;ll do [...]]]></description>
			<content:encoded><![CDATA[<p>Please allow for mirror prorogation.Â  Thanks to <a href="http://maraby.org/post/27611841" target="_blank">Matt Todd</a> for finding the first official Mack bug! Strangely enough, I actually welcome people finding bugs in Mack. It only serves to make it a better framework.</p>
<p>If you find a bug, please head on over to <a href="http://rubyforge.org/tracker/?group_id=4405" target="_blank">RubyForge</a> and submit a ticket for it, and I&#8217;ll do my best to turn it around as quick as possible.</p>
<p>Changelog:</p>
<ul>
<li>gem: thin 0.7.0</li>
</ul>
<ul>
<li>gem: cachetastic 1.3.1</li>
</ul>
<ul>
<li>Fixed 18487: #convert_security_of_methods ignores new_level param</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.metabates.com/2008/02/29/release-0062/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

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

