[google-appengine] Re: some applications experiencing problems with backends

2012-11-06 Thread Christina Ilvento
The issue should now be resolved and backend instances should be
functioning normally.

On Tue, Nov 6, 2012 at 8:26 PM, Christina Ilvento wrote:

> We are aware of an ongoing issue, beginning around 7 PM US/Pacific time,
> with backend instances not starting up. Affected applications would see 503
> server errors from backend instances.
>
> The App Engine team is investigating the issue and working on rolling out
> a fix as soon as possible.
>
>
> Regards,
> Christina Ilvento,
> App Engine Product Manager
>



-- 

Christina Ilvento | Google App Engine | cilve...@google.com | (650)-201-9399

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] some applications experiencing problems with backends

2012-11-06 Thread Christina Ilvento
We are aware of an ongoing issue, beginning around 7 PM US/Pacific time, 
with backend instances not starting up. Affected applications would see 503 
server errors from backend instances. 

The App Engine team is investigating the issue and working on rolling out a 
fix as soon as possible.


Regards,
Christina Ilvento, 
App Engine Product Manager

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/zhsMy4pCifwJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Hangout tomorrow 4pm PST - chat with the App Engine PMs

2012-11-06 Thread Amy Unruh
hi all,

Join us for an App Engine G+ hangout on Wed. Nov. 7, 4pm-5pm (US /
Pacific), to chat with the App Engine PMs (Product Managers), and ask them
questions.  Submit your questions here: http://goo.gl/y5ugb , and we hope
to open up a few live slots in the hangout as well.
(For our last hangout, we had hoped to invite people to join live, but it
didn't work out. However, this time we really ought to be able to manage it
:).

When the hangout starts, you can watch it here:
https://developers.google.com/events/10315083/ .
If you're a Google+ user, you can RSVP to the event here:
 https://plus.google.com/117105793163182226623/posts/ch8MghGAiyu
to get a reminder.

Also, for those who haven't seen it, you might be interested in our hangout
from last week.  We talked with Steve Huffman, founder of reddit and
Hipmunk, and Chris Chew, senior software engineer at Udacity, which runs on
App Engine and provides free online courses.  Steve talked about his
experience teaching a course on web development using App Engine at
Udacity, and Chris discussed his experience building Udacity itself using
App Engine.
https://developers.google.com/live/shows/9826022/ .

 -Amy

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Frequent NPE on Objectify.get

2012-11-06 Thread Thomas Wiradikusuma
Hi guys,

I'm using Java and Objectify 3, but I'm thinking this problem I'm 
experiencing is probably more related to GAE.

// Snippet from ProfilePhoto.java

@Entity(name = "PP") @Unindexed
public class ProfilePhoto implements Serializable {
private static final long serialVersionUID = 1L;

@Id private String id;
@Parent private Key user;
private Blob object;

// getters and setters
}

// Snippet from PhotoServlet.scala

val username = getUsername(req)
val pp = objectify.get[ProfilePhoto](new Key[ProfilePhoto](new 
Key[User](classOf[User], username), classOf[ProfilePhoto], username))
val image = makeImage(photo.getObject.getBytes)

That "val pp" line, with same "username", *sometimes *throws NPE from 
datastore. I'm using HRD.

Anyone experiencing datastore get with this kind of problem?

Full cause stacktrace:

Uncaught exception from servlet
java.lang.NullPointerException
at mywebsite.servlet.PhotoServlet.doGet(PhotoServlet.scala:60)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:511)
at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:390)
at 
org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
at org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:182)
at org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:765)
at org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:418)
at org.mortbay.jetty.servlet.Dispatcher.forward(Dispatcher.java:327)
at org.mortbay.jetty.servlet.Dispatcher.forward(Dispatcher.java:126)
at gae.LocalizedRequest$$anon$1.forward(LocalizedRequest.scala:24)
at mywebsite.filter.FirstFilter.obtainContent(FirstFilter.scala:143)
at mywebsite.filter.FirstFilter.process(FirstFilter.scala:119)
at mywebsite.filter.FirstFilter.doFilter(FirstFilter.scala:73)
at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
at 
com.google.apphosting.utils.servlet.ParseBlobUploadFilter.doFilter(ParseBlobUploadFilter.java:102)
at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
at 
com.google.apphosting.runtime.jetty.SaveSessionFilter.doFilter(SaveSessionFilter.java:35)
at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
at 
com.google.apphosting.utils.servlet.TransactionCleanupFilter.doFilter(TransactionCleanupFilter.java:43)
at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:388)
at 
org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
at org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:182)
at org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:765)
at org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:418)
at 
com.google.apphosting.runtime.jetty.AppVersionHandlerMap.handle(AppVersionHandlerMap.java:266)
at org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152)
at org.mortbay.jetty.Server.handle(Server.java:326)
at org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:542)
at 
org.mortbay.jetty.HttpConnection$RequestHandler.headerComplete(HttpConnection.java:923)
at 
com.google.apphosting.runtime.jetty.RpcRequestParser.parseAvailable(RpcRequestParser.java:76)
at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:404)
at 
com.google.apphosting.runtime.jetty.JettyServletEngineAdapter.serviceRequest(JettyServletEngineAdapter.java:146)
at 
com.google.apphosting.runtime.JavaRuntime$RequestRunnable.run(JavaRuntime.java:447)
at 
com.google.tracing.TraceContext$TraceContextRunnable.runInContext(TraceContext.java:454)
at 
com.google.tracing.TraceContext$TraceContextRunnable$1.run(TraceContext.java:461)
at com.google.tracing.TraceContext.runInContext(TraceContext.java:703)
at 
com.google.tracing.TraceContext$AbstractTraceContextCallback.runInInheritedContextNoUnref(TraceContext.java:338)
at 
com.google.tracing.TraceContext$AbstractTraceContextCallback.runInInheritedContext(TraceContext.java:330)
at 
com.google.tracing.TraceContext$TraceContextRunnable.run(TraceContext.java:458)
at 
com.google.apphosting.runtime.ThreadGroupPool$PoolEntry.run(ThreadGroupPool.java:251)
at java.lang.Thread.run(Thread.java:679)

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/fVWJ6_cdGpkJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: SDK 1.7.3 not detecting source file changes - ANNOYING!

2012-11-06 Thread Jakob Holmelund
We have the same issue. 4 guys running on ubuntu. This is really annoying..

Den tirsdag den 6. november 2012 04.55.41 UTC+1 skrev GregF:
>
> I just updated to SDK 1.7.3 running on Linux. At the same time I switched 
> to the SQLite datastore stub, suggested by the depreciation message.
>
> After this, edits to source (python) files are not always detected, and I 
> have to stop and restart the SDK after every edit. Occasionally it starts 
> working for a run, then stops working again. Jinja2 template file 
> modifications are being detected properly, presumably because it has it's 
> own file change detection.
>
> I asked on Stackoverflow, but apart from one other person with the same 
> problem, got no responses. This is intensely annoying. Is anyone else 
> seeing this? Any ideas on how to diagnose and fix it?
>
> Cheers!
> Greg.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/TncGDuj2CvkJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Static Files Statistics

2012-11-06 Thread Darrel Sumi
I've set up some static files in my AppEngine project and was wondering if 
there's any way to track how many times users access those static files 
(similarly to AppStats)

I've added a file like this in my app.yaml:

- url: /file_name
 static_files: static/file_name
 upload: static/file_name

I have a file that my users download, and would like to track how many 
downloads I have gotten, if that's possible. Any clues?
(I'm using Django if that is of any importance)

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/rXGksHZS31kJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] google appengine redirect loop

2012-11-06 Thread PortAlfred
Hi

I have seen some other people experiencing a problem like this in the 
groups and they needed to have their account repaired.

I deleted a domain from my organisation and added it to a friend's 
organisation, and now when I try to log into google app engine, I get a 
redirect loop. I have already created a website for them  which is hosted 
on google app engine (http://1.portalfredrentalcoza.appspot.com), but I can 
no longer log in to administer it.

I am trying to get to http://appengine.google.com/a/portalfredrental.co.za

Can you please help to fix my account?

Thanks

Dean

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/VR-V9OgUV4YJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Dev Server on PyPy

2012-11-06 Thread Michael Sander
I know it's not an officially supported platform, but has anyone tried 
playing around with the App Engine dev server on PyPy? Its JIT should make 
the dev server much faster than when running on cpython. With a bit of 
tinkering, I can get it to start up, but I quickly get the following 
exception whenever I try request a page on the dev server:

File "C:\Program Files 
(x86)\Google\google_appengine\google\appengine\tools\dev_appserver_import_hook.py",
 
line 1606, in FindModuleRestricted
raise import_error
ImportError: Access to module file denied: c:\PyPy19\lib_pypy\_functools.py


The _functools.py file exists on my machine and is readable.  Any idea why 
it's broken?

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/fIAcI0X-9DIJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Google App Engine redirect loop problem

2012-11-06 Thread PortAlfred
Hi

I am experiencing the redirect loop problem on google app engine, can 
someone please fix this for me. My domain is portalfredrental.co.za.

Thanks

Dean

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/cliHFs7nb84J.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Quote Wanted

2012-11-06 Thread JB222
Indicate your fee to configure & install Python & JavaMail on a GAE to send 
bulk email messages.
 
 
http://support.google.com/code/bin/request.py?contact_type=AppEngineQuotaReques 
 

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/h8zXnYCsSdoJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Forum Software in Java

2012-11-06 Thread Threeof Us
I would like to add a forum feature to my existing GAE app.  I am looking 
for open source forum software in Java to integrate into my code.  Any 
pointers will be appreciated.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/0lkhi3MeMYwJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Datastore Admin not working for long application names?

2012-11-06 Thread Oliver Sturm
Hi,

I have a few applications in GAE. In one of them, I can access the 
Datastore Admin page in the dashboard just fine. However, for two other 
applications it is not working - curiously in two different ways. For one 
of the applications, the Datastore Admin page always remains blank - it 
seems to load for a moment, but nothing ever happens and it stays white. 

The second application has a different issue: the auto-generated server 
name for it is too long to be considered "legal" by the DNS name lookup. 
The browser (Chrome) just says that the DNS lookup failed for the 
name 
ah-builtin-python-bundle-dot-latest-dot-01234567890123456789012345.appspot.com 
(I'm replacing the actual app name part of the DNS name with digits, but 
yes, the app name is 26 chars long). Testing with the host command from a 
Unix command prompt, I get an error message declaring the name "not legal".

Is this a known problem? Why am I allowed to use app names this long if a 
standard mechanism like Datastore Admin is not going to work if the name is 
too long? Is there a workaround, other than renaming my app?

The second app for which the page also doesn't work seems to be just within 
the limits, btw - DNS lookup seems to be working for the name in that case. 
Any ideas what might be wrong in that case?

Cheers
Oliver

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/7jkJmUr0ehEJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: Importing data to datastore with bulkloader : error and long back off, but import finish ok

2012-11-06 Thread Brian
Yes, I ran into the same problem a couple of years ago with the local SDK, 
and again recently when I first deployed my app to appspot.com. The 
solution that worked for me was to batch upload my data with no more that 
60 records in each batch. (Had to write some local tools just to work 
around this problem!) Otherwise the delays kept expanding exponentially 
until hours became days and days became weeks -- it would never finish the 
upload. Hope this helps!

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/dklg7iwwehAJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: SDK 1.7.3 not detecting source file changes - ANNOYING!

2012-11-06 Thread Bryce Cutt
Not sure if it is the same issue but my symptoms are similar. After 
updating to SDK 1.7.3 on Windows 7 I have noticed that the compiled Python 
files (.pyc files) are not always overwritten when I modify a source (.py) 
file and it is executed. I never noticed this before SDK 1.7.3 and I have 
not taken the time to track down what exactly is happening. For now, when I 
notice this happening I delete the .pyc file in question and then restart 
the dev server and the .pyc is re-created properly and everything works for 
a while. Eventually pyc files stop being overwritten again and I have to go 
through that process again. The dev server is being run by my user and the 
pyc files are owned by my user so if it is a permissions issue it is a 
weird one.

- Bryce


On Monday, November 5, 2012 7:55:41 PM UTC-8, GregF wrote:
>
> I just updated to SDK 1.7.3 running on Linux. At the same time I switched 
> to the SQLite datastore stub, suggested by the depreciation message.
>
> After this, edits to source (python) files are not always detected, and I 
> have to stop and restart the SDK after every edit. Occasionally it starts 
> working for a run, then stops working again. Jinja2 template file 
> modifications are being detected properly, presumably because it has it's 
> own file change detection.
>
> I asked on Stackoverflow, but apart from one other person with the same 
> problem, got no responses. This is intensely annoying. Is anyone else 
> seeing this? Any ideas on how to diagnose and fix it?
>
> Cheers!
> Greg.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/94vsByWgG_8J.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] I'm looking for a Google App Engine developer

2012-11-06 Thread Andrew Mackenzie
You might want to develop your requirements a bit more and the post somewhere 
like elance.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/k6syHbI9SfgJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] double gzip workarounds?

2012-11-06 Thread Peter Warren
Given this issue with App Engine 
(http://code.google.com/p/googleappengine/issues/detail?id=2036), it seems 
that I'm stuck gzipping to store items in memcache, ungzipping them when I 
pull them out of cache, and then having GAE re-gzip them to deliver them to 
the client.

I'm having a really, really hard time believing that this is the case. Is 
there no way for me to store gzipped content in memcache and have it 
delivered as gzipped content without GAE trying to gzip it again on the way 
out to the browser?

The objects we're caching are fairly big ~1MB and compress at about 10:1. 
It's crazy for us to unzip and then rezip the same object when servicing a 
single web request. At this point I'm thinking of setting up a Varnish 
cache on AWS to sit in front of our GAE apps just to avoid this. Are there 
other, better ideas?

Thanks!

Peter

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/-t-b20T46lYJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: Appengine backend "DeadlineExceededError" error

2012-11-06 Thread Vinny P
Keep in mind that backends are set to private by default; you have to be 
logged in as an administrator to hit a backend from a URL. 

Alternately, you can set the backend to public (options: dynamic, public in 
your yaml file) and then hit the backend from anywhere.

On Tuesday, November 6, 2012 9:40:48 AM UTC-6, Marcel Manz wrote:
>
> See: 
> https://developers.google.com/appengine/docs/java/backends/overview#Addressing_Backends
>
> A backend instance can be targeted with HTTP requests to 
> http://[instance].[backend_name].[your_app_id].appspot.com, or at your 
> application's custom domain. If you target a backend without targeting an 
> instance using http://[backend_name].[your_app_id].appspot.com, App 
> Engine selects the first available instance of the backend.
>
> You can call your backend script by 
> http://yourbackendname.yourappid.appspot.com/cron/your_job
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/O_bVqKwmJdsJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: Appengine backend "DeadlineExceededError" error

2012-11-06 Thread Marcel Manz
See: 
https://developers.google.com/appengine/docs/java/backends/overview#Addressing_Backends

A backend instance can be targeted with HTTP requests to 
http://[instance].[backend_name].[your_app_id].appspot.com, or at your 
application's custom domain. If you target a backend without targeting an 
instance using http://[backend_name].[your_app_id].appspot.com, App Engine 
selects the first available instance of the backend.

You can call your backend script by 
http://yourbackendname.yourappid.appspot.com/cron/your_job

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/ngfH0qNLJB4J.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] Memcache seems to be cleared periodically

2012-11-06 Thread timh
Expiration/expunging of memcache data is affected by a number of things. 
 How much you have in memcache, frequency of hits, how much else is going 
on in google land (ie in that machines you happen to be running on etc).

I have only 33MB in cache (1058 items) a 94% hit rate and the oldest item 
is 17 hours.

There do seem to be some high water marks which when you start exceeding 
them stuff will get expunged more quickly.

T

On Monday, November 5, 2012 2:32:04 PM UTC+8, devlike wrote:
>
> "you can do a set in one line and get in the next line and have the value 
> be not found."
>
> Yes, but when cached data is cleared too often, and too soon, it defeats 
> the purpose of memcaching things.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/b9RJjcAYFa8J.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] problem with jdo

2012-11-06 Thread Shilendra Sharma
you take help from stackverflow.com

Regards & Thanks
Shilendra Sharma
+919891343808
shilendra...@googlemail.com


On Mon, Nov 5, 2012 at 6:33 PM, josselin chevalay <
josselin54.cheva...@gmail.com> wrote:

> hello,
> I'm trying to set up my entity jdo however not persist. how we put up jdo?
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/google-appengine/-/Ar-ZVBupUHQJ.
> To post to this group, send email to google-appengine@googlegroups.com.
> To unsubscribe from this group, send email to
> google-appengine+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] SDK 1.7.3 not detecting source file changes - ANNOYING!

2012-11-06 Thread Shilendra Sharma
Hi, Greg

you update your app engine SDK 1.7.3 then you can work .




Regards & Thanks
Shilendra Sharma
+919891343808
shilendra...@googlemail.com


On Tue, Nov 6, 2012 at 9:25 AM, GregF  wrote:

> I just updated to SDK 1.7.3 running on Linux. At the same time I switched
> to the SQLite datastore stub, suggested by the depreciation message.
>
> After this, edits to source (python) files are not always detected, and I
> have to stop and restart the SDK after every edit. Occasionally it starts
> working for a run, then stops working again. Jinja2 template file
> modifications are being detected properly, presumably because it has it's
> own file change detection.
>
> I asked on Stackoverflow, but apart from one other person with the same
> problem, got no responses. This is intensely annoying. Is anyone else
> seeing this? Any ideas on how to diagnose and fix it?
>
> Cheers!
> Greg.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/google-appengine/-/Dua3i1_BYl0J.
> To post to this group, send email to google-appengine@googlegroups.com.
> To unsubscribe from this group, send email to
> google-appengine+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.