<?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: marshal, Your Best Friend in the Python Universe</title>
	<atom:link href="http://www.answermysearches.com/marshal-your-best-friend-in-the-python-universe/66/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.answermysearches.com/marshal-your-best-friend-in-the-python-universe/66/</link>
	<description>Answers to everything I search for, every day</description>
	<lastBuildDate>Tue, 22 Nov 2011 08:57:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Greg Pinero (Primary Searcher)</title>
		<link>http://www.answermysearches.com/marshal-your-best-friend-in-the-python-universe/66/comment-page-1/#comment-172</link>
		<dc:creator>Greg Pinero (Primary Searcher)</dc:creator>
		<pubDate>Wed, 22 Mar 2006 01:27:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.answermysearches.com/index.php/marshal-your-best-friend-in-the-python-universe/66/#comment-172</guid>
		<description>I prefer marshal over pickle because I&#039;ve always gotten a huge speed boost from it.  Pickle seems quite slow to me, and it seemed unusable for large data storage (yes, I even tried the proto option).

I think marshal calls are easier for me to type but I don&#039;t remember pickle syntax offhand.</description>
		<content:encoded><![CDATA[<p>I prefer marshal over pickle because I&#8217;ve always gotten a huge speed boost from it.  Pickle seems quite slow to me, and it seemed unusable for large data storage (yes, I even tried the proto option).</p>
<p>I think marshal calls are easier for me to type but I don&#8217;t remember pickle syntax offhand.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Bengtsson</title>
		<link>http://www.answermysearches.com/marshal-your-best-friend-in-the-python-universe/66/comment-page-1/#comment-171</link>
		<dc:creator>Peter Bengtsson</dc:creator>
		<pubDate>Wed, 22 Mar 2006 00:52:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.answermysearches.com/index.php/marshal-your-best-friend-in-the-python-universe/66/#comment-171</guid>
		<description>I suggest you have a look at my optimization story when I discovered marshal as a &quot;replacement&quot; to cPickle:
http://www.peterbe.com/plog/python-optimization-anecdote</description>
		<content:encoded><![CDATA[<p>I suggest you have a look at my optimization story when I discovered marshal as a &#8220;replacement&#8221; to cPickle:<br />
<a href="http://www.peterbe.com/plog/python-optimization-anecdote" rel="nofollow">http://www.peterbe.com/plog/python-optimization-anecdote</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bob Ippolito</title>
		<link>http://www.answermysearches.com/marshal-your-best-friend-in-the-python-universe/66/comment-page-1/#comment-170</link>
		<dc:creator>Bob Ippolito</dc:creator>
		<pubDate>Wed, 22 Mar 2006 00:35:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.answermysearches.com/index.php/marshal-your-best-friend-in-the-python-universe/66/#comment-170</guid>
		<description>marshal has two pretty big caveats: the serialization can change in any minor version of Python, and it only supports a limited set of primitive data structures.

The only time I&#039;ve really seen marshal used intentionally is to manipulate .pyc files without going through the normal import code path (pyc files are just a marshal of a module).

Pickle on the other hand can serialize anything you teach it to, and the format is well specified and stays compatible across versions of Python.</description>
		<content:encoded><![CDATA[<p>marshal has two pretty big caveats: the serialization can change in any minor version of Python, and it only supports a limited set of primitive data structures.</p>
<p>The only time I&#8217;ve really seen marshal used intentionally is to manipulate .pyc files without going through the normal import code path (pyc files are just a marshal of a module).</p>
<p>Pickle on the other hand can serialize anything you teach it to, and the format is well specified and stays compatible across versions of Python.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

