Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to build a chat application on GAE in JAVA . I have the need to keep count of all online users and their networks (chat rooms of some sort) , and this info needs to be updated constantly . I have (wrongly?) assumed that I can just use Java's SerlvetContext and Set/Get Attribute methods to update online\offline users and share that information with all servlets . As I have come to know(with lovely bugs) , since GAE is distributed\cloud service , it doesn't effectively implement ServletContext.setAttribute - meaning is that my app probably runs on more than one JVM , and information on ServletContext is shared only between servlets belonging to the same JVM.

This is a huge problem for me , of course . Several Questions - 1)Does ServletContext indeed won't work properly on GAE? 2)Is GAE a bad choice for beginner web developpers like myself ? It seems to me that I always find new problems and things that don't correspond with Servlet\JSP rules. Since it is hard enough for a beginner to learn Servlets , maybe GAE isn't the right choice? 3)How then can I share information between Servlets ?

share|improve this question

1 Answer

up vote 1 down vote accepted

If you're really just trying to learn Java EE for your own purposes I would probably avoid GAE for the reasons you mention. It's a perfectly good service, but yes, it has its own set of caveats that might get in the way of your learning. You might be better off just spinning up an EC2 instance for your purposes.

That said - you are correct, AppEngine will spin up and down instances to serve requests. If you want shared state you should use memcache which is shared across instances, but you have to manage access to the memcache objects for the possibility of multiple users writing to it at the same time.

share|improve this answer
1)Isn't EC2 also a distributed service ? Will I not face the same problem there ? 2) Is Memcache really a solution for my problem ? Several guides say Memcache is unreliable and is suited for mostly static pages , not constantly changing ones , and that the info should be backed up in the database . Is it not 'insane' for me to constantly read and write to the database like that ? insane meaning expensive moneywise – Joel_Blum Apr 18 '12 at 15:48
1) No. It's not. EC2 gives you exactly the number of servers you ask for 2) Memcache is reliable for this purpose, but yes, if you want the data to persist across server restarts you need to persist it. Depending on the load of your application you're going to run into concurrency issues though. The problem with the datastore is eventual consistency, if your app is realtime you will have to wrap your puts in a transaction. How many users are you expecting on this app? – Rick Mangi Apr 18 '12 at 15:58
I suppose I'll go with Memcache since the whole thing is written for GAE . So to conclude , is it an ok solution to update my global data (e.g arraylist of online users) into the memcache ? my app works the same as gmail\facebook - it wants to refresh the online users (lets say refresh every minute) . that's tons of updating , I wouldn't want to have to access a db every minute. to be clear Im not really expecting anyone to use my app (I'd be delighted , but surprised) but I want to understand how to do this the right way . Thanks for your help Rick – Joel_Blum Apr 18 '12 at 16:27
Updating every minute is fine, you don't have to really worry about concurrency until you're doing multiple updates a second. – Rick Mangi Apr 18 '12 at 17:51
Last question : What about using a regular class (not a servlet) with static variables for storage ? will it be shared among all servlets or spread across several JVMs? – Joel_Blum Apr 19 '12 at 4:44
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.