I got an app built on top of App Engine.

We got a User class and many other classes as well. When user loged in.

How Google count the Instance hours when I do the following:

User user=request.getParameter("user");

I also have public static variable to hold chat messages & that could be 
called every 5 seconds if a user enter chat room (*note:* if many users 
enter the chat room then that variable could be called many times every 5 
seconds), as the following:

public static Map<User, ConcurrentHashMap<User, CopyOnWriteArrayList<String>>> 
chatRoomConcurrentMap=new ConcurrentHashMap<User, ConcurrentHashMap<User, 
CopyOnWriteArrayList<String>>>();

If that is the case then how Google count the instance hours of that static 
variable?

SO, *How does Google count instance hour when we instantiate an object and 
when we call a public variable?*

-- 
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/ea05f0c7-58ac-42c4-99d6-83a68abe3383%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to