[google-appengine] greetings

2013-07-21 Thread karthik valsatech
 http://kwikhard.erectionpills.co.nz/fmvwah/bgmkzfrrknoafzhsjmhqtv















 karthik valsatech









 7/21/2013 8:17:04 PM

-- 
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 group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [google-appengine] Re: Yaml addressing and template with GAE is not working ?

2011-11-14 Thread karthik valsatech
On Mon, Nov 14, 2011 at 10:56 AM, Tim Hoffman zutes...@gmail.com wrote:

 Static files (mapped by the static handler) are not accessible from your
 application code.

 The static files are handled by different infrastructure.  You will need
 to deploy a second copy
 one for your application code access and one for static handler.

 Its always been this way.

 Use a symlink in your project folder, rather than keeping two copies
 locally.

 T

 --
 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/-/tkoAtyiPkakJ.

 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] Since Monday, these simple SQL operations translate to expensive DataStore operations, why?

2011-11-14 Thread karthik valsatech
On Tue, Nov 8, 2011 at 4:37 PM, Alberto Valaz alberto.va...@gmail.comwrote:

 I noticed that a number of simple SQL operations that my application
 is dependent on generate very high quota usage.
 Basically, one run of the three operations listed below are enough to
 use up my daily free quota!!


 I assume I am doing something very wrong but I am not sure how to fix
 it. Could anyone please give me

  thank you


 PS. an interesting twist is that the below code worked just fine under
 the old payment model.


 -
 // The table Something below has around 50k rows. No indexes are used.

 PersistenceManager pm = ...


 // Select COUNT(*) from Something
 Query q = pm.newQuery(Something.Class, null);
 q.setResult(count(this));
 q.execute();



 // select COUNT(*) from Something where 1234  feild
 Query q = pm.newQuery(Something.Class, this.field  field);
 q.declareParameters(Long field);
 q.setResult(count(this));
 q.executeWithArray(1234);


 // select * from Something order total DESC
 Query q = pm.newQuery(Something.Class, null);
 q.setOrdering(total DESC);
 q.execute();

 --
 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.



-- 
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.