[google-appengine] Re: How can I share files (HTML templates) between App Engine modules?

2015-10-12 Thread Dan Dubois
Thanks Nick, Glad my question found the right location in the end. I thought I would reply here just for completeness. I ultimately wanted to know how I can avoid file duplication in my own local repo when sharing application files between modules. The answer on StackOverflow suggests simlinkin

[google-appengine] How can I share files (HTML templates) between App Engine modules?

2015-10-12 Thread Dan Dubois
Crossposting from StackOverflow in case anyone has a good solution: http://stackoverflow.com/questions/33088104/how-can-i-share-files-html-templates-between-app-engine-modules -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe

Re: [google-appengine] Re: Creating Unique Entities

2015-05-25 Thread Dan Dubois
tically all apps are > these days), this should be mandatory reading: > http://en.wikipedia.org/wiki/Two_Generals%27_Problem > > Jeff > > On Mon, May 18, 2015 at 10:38 PM, Dan Dubois > wrote: > >> Hi Jeff, >> >> I just wanted some clarification on the fol

Re: [google-appengine] Re: Creating Unique Entities

2015-05-18 Thread Dan Dubois
Hi Jeff, I just wanted some clarification on the following statement: "HOWEVER, you have to take idempotence rather seriously. The "edge cases" of the datastore produce errors/exceptions. Errors can happen even if the underlying transaction committed successfully." Are you saying that datastor

Re: [google-appengine] Re: Creating Unique Entities

2015-05-17 Thread Dan Dubois
Hi Francis, I think I understand exactly what you mean and it's an interesting edge case when designing the datastore transaction system. Somehow within a transaction it needs to record that the 'put' method either expects the entity it is saving to already exist or not exists. What's more thi

[google-appengine] Re: HTTP/2 Protocol Support

2015-03-20 Thread Dan Dubois
"HTTP/2 enabled (h2-14)". green means > SPDY (appspot.com showed this until recently. you can see it now on > twitter.com). When it's red that means "quic" is involved. > > On Thursday, 19 March 2015 13:07:27 UTC, Dan Dubois wrote: >> >> Does App E

[google-appengine] HTTP/2 Protocol Support

2015-03-19 Thread Dan Dubois
Does App Engine support the HTTP/2 protocol? -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-appengine+unsubscr...@googlegroups.com. To post to this

Re: [google-appengine] GAE Testbed Error: No api proxy found for service "file"

2011-07-25 Thread Dan Dubois
Thanks both of you. It is Python I am using so I have starred the issue. Best wishes, Dan -- 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/-/AhTsggs7

[google-appengine] GAE Testbed Error: No api proxy found for service "file"

2011-07-15 Thread Dan Dubois
There doesn't appear to be a files testbed API stub in the SDK to let me unit test my app. Has anyone figured out a way round this? Best wishes, Dan -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discussion on the web visit

[google-appengine] Re: 1.5.1 SDK Prerelease

2011-06-15 Thread Dan Dubois
Great news! Where can I find more information about the Channel API's user presence functionality? Best wishes, Dan -- 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/m

Re: [google-appengine] Clarification on appengine-mapreduce

2011-04-08 Thread Dan Dubois
OK thanks for letting me know. I am certainly looking forward to being able to map over a subset of entities. It'll make my implementation of broadcasting using the Channel API much nicer! -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. T

[google-appengine] Clarification on appengine-mapreduce

2011-04-08 Thread Dan Dubois
I see on http://code.google.com/p/appengine-mapreduce/wiki/UserGuidePython the following statement under "Current Limitations": Only full range scan is supported, i.e. it's impossible to scan a subset of a particular entity kind. Is this because it is technically impossible or just that the fun

[google-appengine] How do I change to the High Replication datastore and keep my app id?

2011-04-06 Thread Dan Dubois
I just want to know for future reference as applications reference my appspot.com address and I am considering moving over from Master Slave to High Replication. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send

Re: [google-appengine] Re: How do I determine the order of HTTP requests?

2011-02-21 Thread Dan Dubois
Thanks for the replies. Robert, The rates come in bursts peaking over a few seconds and tail off quickly over the course of a few minutes. They are generated by users quickly clicking links in web browsers that use AJAX to connect to the GAE cloud. I would like to get the sequential order of th

[google-appengine] How do I determine the order of HTTP requests?

2011-02-20 Thread Dan Dubois
I periodically have a large number of requests (thousands) to my site in the space of a few seconds. I need to record the order in which the requests access the site so I can do downstream processing. The order does not have to be exact, I only need resolution down to 1 second: I don't care whi

[google-appengine] Re: App Engine SDK 1.4.2 is out!

2011-02-12 Thread Dan Dubois
The update as arrived. :-) I can finally restart development of my app since the JSP mapping bug appeared. Thanks! -- 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

[google-appengine] Re: App Engine SDK 1.4.2 is out!

2011-02-11 Thread Dan Dubois
Any idea when the App Engine Java SDK 1.4.2 Eclipse plugin will be released? -- 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 emai

[google-appengine] Re: What's the point of memcache incr & decr?

2011-02-06 Thread Dan Dubois
Strom, your use of memcache incr and decr is a great example: Synchronise a memcache counter with the count() of a datastore entity query. I imagine it could be tricky to *exactly* synchronise the memcache counter with the datastore if the memcache counter did get purged. Calvin, I had a look a

[google-appengine] What's the point of memcache incr & decr?

2011-02-05 Thread Dan Dubois
Hi All, What are some use cases of memcache incr & decr? I just don't see where a distributed atomic increment/decrement function would be useful when you know it could be wiped and reset at any point. People suggest periodically saving a memcache counter back to the datastore, but this guarant

[google-appengine] Apple Push Notification Service integration

2011-01-18 Thread Dan Dubois
Is it possible to use Apple Push Notification Service with GAE yet? The issue http://code.google.com/p/googleappengine/issues/detail?id=1164 has been quiet recently I see the main hurdle was that Apple requires you to use certs provided by them. Is URL Fetch (Python or Java) able to support this