Hi, Can a DBIC resultset be serialized in order to be stored in the cache? With other words, is it possible to do: my $cache = $c->cache; my $feeds = $cache->get($pg); unless (defined $feeds) { $feeds = $c->model("DB::Feed")->get_feeds($pg); $cache->set($pg, $feeds, 10); } Thank you. -- Octavian