<?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>MoDoFo.println(" &#187; gae</title>
	<atom:link href="http://zhangv.com/archives/tag/gae/feed" rel="self" type="application/rss+xml" />
	<link>http://zhangv.com</link>
	<description>Life for Idea - forever young</description>
	<lastBuildDate>Sat, 07 Apr 2012 04:08:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>See u see me</title>
		<link>http://zhangv.com/archives/1372</link>
		<comments>http://zhangv.com/archives/1372#comments</comments>
		<pubDate>Thu, 17 Dec 2009 12:46:50 +0000</pubDate>
		<dc:creator>zhangv</dc:creator>
				<category><![CDATA[非技术(non-tech)]]></category>
		<category><![CDATA[gae]]></category>
		<category><![CDATA[Idea]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://zhangv.com/archives/1372</guid>
		<description><![CDATA[See you see me
移动互联网，自拍，付费，流量，3G，twitter + snap ，facebook ，手机浏览，not wap ，客户端，彩信，email，openapi，gae
 Powered by MoFire

	Tags: gae, Idea, twitter
]]></description>
			<content:encoded><![CDATA[<p>See you see me<br />
移动互联网，自拍，付费，流量，3G，twitter + snap ，facebook ，手机浏览，not wap ，客户端，彩信，email，openapi，gae<br />
 Powered by <a href='http://zhangv.com/mofire'>MoFire</a></p>

	Tags: <a href="http://zhangv.com/archives/tag/gae" title="gae" rel="tag">gae</a>, <a href="http://zhangv.com/archives/tag/idea" title="Idea" rel="tag">Idea</a>, <a href="http://zhangv.com/archives/tag/twitter" title="twitter" rel="tag">twitter</a><br />
]]></content:encoded>
			<wfw:commentRss>http://zhangv.com/archives/1372/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>giftTag</title>
		<link>http://zhangv.com/archives/1368</link>
		<comments>http://zhangv.com/archives/1368#comments</comments>
		<pubDate>Thu, 17 Dec 2009 05:07:29 +0000</pubDate>
		<dc:creator>zhangv</dc:creator>
				<category><![CDATA[技术(Tech)]]></category>
		<category><![CDATA[gae]]></category>
		<category><![CDATA[gifttag]]></category>

		<guid isPermaLink="false">http://zhangv.com/archives/1368</guid>
		<description><![CDATA[基于GAE的一个很棒的wishlist应用 - gifttag，通过一个firefox插件获取浏览网页中的图片，并直接发送到服务器上，之后可以共享。
要是可以结合类似捐款（集资）的功能就更好了。


	Tags: gae, gifttag
]]></description>
			<content:encoded><![CDATA[<p>基于GAE的一个很棒的wishlist应用 - <a href="http://www.giftag.com">gifttag</a>，通过一个firefox插件获取浏览网页中的图片，并直接发送到服务器上，之后可以共享。<br />
要是可以结合类似捐款（集资）的功能就更好了。</p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" src="http://img.zemanta.com/pixy.gif?x-id=fbd36d4b-cf68-8ecb-bcb7-d41f01c33a6f" alt="" /></div>

	Tags: <a href="http://zhangv.com/archives/tag/gae" title="gae" rel="tag">gae</a>, <a href="http://zhangv.com/archives/tag/gifttag" title="gifttag" rel="tag">gifttag</a><br />
]]></content:encoded>
			<wfw:commentRss>http://zhangv.com/archives/1368/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>App Engine datastore does not support operator  OR</title>
		<link>http://zhangv.com/archives/1095</link>
		<comments>http://zhangv.com/archives/1095#comments</comments>
		<pubDate>Sun, 21 Jun 2009 09:28:33 +0000</pubDate>
		<dc:creator>zhangv</dc:creator>
				<category><![CDATA[技术(Tech)]]></category>
		<category><![CDATA[gae]]></category>

		<guid isPermaLink="false">http://zhangv.com/archives/1095</guid>
		<description><![CDATA[今天尝试用datastore api写一个简单的查询，发现filter里不支持“OR”(&#124;&#124;)，也就是不可以这样查询：
SELECT FROM MyObject WHERE uid==1 &#124;&#124; uid==2
会报错：“App Engine datastore does not support operator  OR ”
这里是关于这个问题的讨论和解决办法
只能通过多次查询，然后合并查询的结果。同样datastore也不支持IN操作。Python API中对IN操作的实现其实也是多次查询。

	Tags: gae
]]></description>
			<content:encoded><![CDATA[<p>今天尝试用datastore api写一个简单的查询，发现filter里不支持“OR”(||)，也就是不可以这样查询：</p>
<p>SELECT FROM MyObject WHERE uid==1 || uid==2</p>
<p>会报错：“App Engine datastore does not support operator  OR ”<br />
这里是关于这个问题的<a href="http://stackoverflow.com/questions/930966/app-engine-datastore-does-not-support-operator-or" target="_blank">讨论和解决办法</a><br />
只能通过多次查询，然后合并查询的结果。同样datastore也不支持IN操作。Python API中对IN操作的实现其实也是多次查询。</p>

	Tags: <a href="http://zhangv.com/archives/tag/gae" title="gae" rel="tag">gae</a><br />
]]></content:encoded>
			<wfw:commentRss>http://zhangv.com/archives/1095/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google App Engine Java</title>
		<link>http://zhangv.com/archives/902</link>
		<comments>http://zhangv.com/archives/902#comments</comments>
		<pubDate>Tue, 14 Apr 2009 01:58:32 +0000</pubDate>
		<dc:creator>zhangv</dc:creator>
				<category><![CDATA[非技术(non-tech)]]></category>
		<category><![CDATA[gae]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://zhangv.com/archives/902</guid>
		<description><![CDATA[http://code.google.com/appengine/docs/java/overview.html

	Tags: gae, google, Java
]]></description>
			<content:encoded><![CDATA[<p>http://code.google.com/appengine/docs/java/overview.html</p>

	Tags: <a href="http://zhangv.com/archives/tag/gae" title="gae" rel="tag">gae</a>, <a href="http://zhangv.com/archives/tag/google" title="google" rel="tag">google</a>, <a href="http://zhangv.com/archives/tag/java" title="Java" rel="tag">Java</a><br />
]]></content:encoded>
			<wfw:commentRss>http://zhangv.com/archives/902/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

