I am building a Java chat app based on App Engine platform. The app will
not store data into database but in a public static variable.
Ok, Now, here is the logic
A user can enter chat.html & post messages to server and the messages will
be stored inside a ConcurrentHashMap<User, List<String>
Then chat.html will have a checkLatestMsg() function that runs every 3
secs. Thus function will read the ConcurrentHashMap<User, List<String> &
for(String s: list){
if(s!=null && "".equals(s)){
resp.setContentType("text/plain;charset=utf-8");
resp.getWriter().println(s);
}
}
So the resp.getWriter().println(s); won't show anything the list has no
data. My question is that:
*Will Google count the number of call requests?*
*What if we send a request but resp.getWriter().println(s); shows nothing,
then will Google count that call?*
The Quota pages tell nothing about this:
https://cloud.google.com/appengine/docs/quotas
*Could you clarify it?*
--
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 [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit
https://groups.google.com/d/msgid/google-appengine/ebbe3e6c-31a9-46e5-a040-e45a92e646ba%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.