Hi, all

I am in the game industry and use Google App Engine as my backend server. 
My problem is we do the game logic calculation in the server side and use 
thousands of Constants which read from csv files. Our current solution is 
to read CSV files and store them into the datastore. Then when a request 
comes, the servlet checks memcache first, if miss read from datastore. This 
is done automatically by Objectify. I am wondering if there is other more 
effective way to do this. 

Other solutions include:
1. store all constants in the servlet as int array. But I think the launch 
overhead may be a lot, since there are thousands more constants.
2. read constant from csv files each time the servlet needs it. I don't 
think this is a good idea.


Thanks in advance. First time to post here.

-- 
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/9046e0b0-68d3-4337-bdd6-d681ae15b028%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to