<?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: App Engine Datastore Workarounds and Search</title> <atom:link href="http://pythoughts.com/app-engine-datastore-workarounds-and-search/feed/" rel="self" type="application/rss+xml" /><link>http://pythoughts.com/app-engine-datastore-workarounds-and-search/</link> <description>Web Programming</description> <lastBuildDate>Sat, 19 May 2012 06:39:10 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.2.1</generator> <item><title>By: pranesh</title><link>http://pythoughts.com/app-engine-datastore-workarounds-and-search/#comment-3897</link> <dc:creator>pranesh</dc:creator> <pubDate>Wed, 08 Feb 2012 08:33:29 +0000</pubDate> <guid
isPermaLink="false">http://pythoughts.com/?p=8#comment-3897</guid> <description>On that site some travel agency application is displayed. i have that code . its an python using GAE application . In that code  how i change the Database table into editable table . And also i insert the search field to search the database content in python .</description> <content:encoded><![CDATA[<p>On that site some travel agency application is displayed. i have that code . its an python using GAE application . In that code  how i change the Database table into editable table . And also i insert the search field to search the database content in python .</p> ]]></content:encoded> </item> <item><title>By: Richard</title><link>http://pythoughts.com/app-engine-datastore-workarounds-and-search/#comment-3881</link> <dc:creator>Richard</dc:creator> <pubDate>Tue, 27 Dec 2011 04:36:12 +0000</pubDate> <guid
isPermaLink="false">http://pythoughts.com/?p=8#comment-3881</guid> <description>Enjoyed this article, thanks! It would be nice if the python code had it&#039;s whitespace preserved given the importance of it in the language ;)</description> <content:encoded><![CDATA[<p>Enjoyed this article, thanks! It would be nice if the python code had it&#8217;s whitespace preserved given the importance of it in the language <img
src='http://pythoughts.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p> ]]></content:encoded> </item> <item><title>By: Graeme</title><link>http://pythoughts.com/app-engine-datastore-workarounds-and-search/#comment-1752</link> <dc:creator>Graeme</dc:creator> <pubDate>Tue, 15 Feb 2011 03:42:01 +0000</pubDate> <guid
isPermaLink="false">http://pythoughts.com/?p=8#comment-1752</guid> <description>Hi Charles,
Actually...I moved to Wordpress for this blog (I know, I know! I&#039;m sorry!)</description> <content:encoded><![CDATA[<p>Hi Charles,</p><p>Actually&#8230;I moved to WordPress for this blog (I know, I know! I&#8217;m sorry!)</p> ]]></content:encoded> </item> <item><title>By: Charles</title><link>http://pythoughts.com/app-engine-datastore-workarounds-and-search/#comment-211</link> <dc:creator>Charles</dc:creator> <pubDate>Tue, 05 Oct 2010 09:22:00 +0000</pubDate> <guid
isPermaLink="false">http://pythoughts.com/?p=8#comment-211</guid> <description>Did you take your search functionality off of your site?  I can&#039;t seem to find it.  Just wondering if you took it down for any reason.</description> <content:encoded><![CDATA[<p>Did you take your search functionality off of your site?  I can&#8217;t seem to find it.  Just wondering if you took it down for any reason.</p> ]]></content:encoded> </item> <item><title>By: Jaroslav Záruba</title><link>http://pythoughts.com/app-engine-datastore-workarounds-and-search/#comment-82</link> <dc:creator>Jaroslav Záruba</dc:creator> <pubDate>Fri, 20 Aug 2010 02:43:41 +0000</pubDate> <guid
isPermaLink="false">http://pythoughts.com/?p=8#comment-82</guid> <description>ah, i see i actually did get it wrong</description> <content:encoded><![CDATA[<p>ah, i see i actually did get it wrong</p> ]]></content:encoded> </item> <item><title>By: Jaroslav Záruba</title><link>http://pythoughts.com/app-engine-datastore-workarounds-and-search/#comment-81</link> <dc:creator>Jaroslav Záruba</dc:creator> <pubDate>Fri, 20 Aug 2010 02:42:50 +0000</pubDate> <guid
isPermaLink="false">http://pythoughts.com/?p=8#comment-81</guid> <description>Is it possible that they have removed this &#039;functionality&#039;? I am unable to execute query as long as it contains the magic character... I tried both these... newQuery(&quot;ImageBlobInfoWrapper WHERE filename &gt;= :p AND filename = _path1 AND filename &lt; _path2&quot;); and I end with this error: Portion of expression could not be parsed: AND filename &lt; _path2 (Java) Did I get it wrong?</description> <content:encoded><![CDATA[<p>Is it possible that they have removed this &#8216;functionality&#8217;? I am unable to execute query as long as it contains the magic character&#8230; I tried both these&#8230; newQuery(&#8220;ImageBlobInfoWrapper WHERE filename &gt;= :p AND filename = _path1 AND filename &lt; _path2&quot;); and I end with this error: Portion of expression could not be parsed: AND filename &lt; _path2 (Java) Did I get it wrong?</p> ]]></content:encoded> </item> <item><title>By: Cody Tapscott</title><link>http://pythoughts.com/app-engine-datastore-workarounds-and-search/#comment-80</link> <dc:creator>Cody Tapscott</dc:creator> <pubDate>Fri, 20 Aug 2010 02:40:01 +0000</pubDate> <guid
isPermaLink="false">http://pythoughts.com/?p=8#comment-80</guid> <description>When an instance of a model is retrieved from the datastore, are all of its properties also retrieved with it? I have an Image object that basically holds its name(db.StringProperty) and the image itself(db.BlobProperty). There are parts in my code where I need to access the name of the image without incurring the cost of having the BlobProperty also transferred from the datastore. Is this possible? Additionally, I use predictable key_names to access Images. If I need to access 10-15 images at a time, would a query filtering for a db.StringProperty or a get_by_key_name with 15 key_names be more efficient?</description> <content:encoded><![CDATA[<p>When an instance of a model is retrieved from the datastore, are all of its properties also retrieved with it? I have an Image object that basically holds its name(db.StringProperty) and the image itself(db.BlobProperty). There are parts in my code where I need to access the name of the image without incurring the cost of having the BlobProperty also transferred from the datastore. Is this possible? Additionally, I use predictable key_names to access Images. If I need to access 10-15 images at a time, would a query filtering for a db.StringProperty or a get_by_key_name with 15 key_names be more efficient?</p> ]]></content:encoded> </item> <item><title>By: alex - unleash reality</title><link>http://pythoughts.com/app-engine-datastore-workarounds-and-search/#comment-73</link> <dc:creator>alex - unleash reality</dc:creator> <pubDate>Thu, 19 Aug 2010 21:50:02 +0000</pubDate> <guid
isPermaLink="false">http://pythoughts.com/?p=8#comment-73</guid> <description>i wish i knew what all this meant :) i&#039;m sure when we start lordground i&#039;ll get well into python for general web lordage. got pages and pages of notes to talk about. we&#039;re gonna roast twitter like a sunday lunch :P keep well and lording bra alex - unleash reality</description> <content:encoded><![CDATA[<p>i wish i knew what all this meant <img
src='http://pythoughts.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> i&#8217;m sure when we start lordground i&#8217;ll get well into python for general web lordage. got pages and pages of notes to talk about. we&#8217;re gonna roast twitter like a sunday lunch <img
src='http://pythoughts.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> keep well and lording bra alex &#8211; unleash reality</p> ]]></content:encoded> </item> </channel> </rss>
