This seems like a question that would be better posted to Stack Overflow, rather than a discussion post. The google-appengine group is intended more for general discussion rather than 1-on-1 support assistance. Please see the main Community Support page <https://support.google.com/cloud/answer/3466163#> for a list of the tags we monitor.
It sounds like you are missing the necessary App Engine JARs in your WEB-INF/lib directory in the WAR package that is being deployed. If you are using the Google Plugin for Eclipse <https://developers.google.com/eclipse/docs/appengine> I'd recommend creating a new Web Application project and try re-deploying, after ensuring that WEB-INF/lib contains the App Engine JARs. If you are using Apache Maven <https://cloud.google.com/appengine/docs/java/tools/maven> try creating a new project from the appengine-skeleton-archetype to ensure the necessary dependencies are specified in your pom.xml. On Wednesday, December 30, 2015 at 1:45:12 PM UTC-5, Shivkumar Krishnan wrote: > > Hi All, > > am using Memcache this way in my instance, with java. > > > MemcacheService syncCache = MemcacheServiceFactory.getMemcacheService(); > > syncCache.setErrorHandler(ErrorHandlers.getDefault()); > myObject = syncCache.get(key); > > > On my instance logs am seeing this error: > > java.lang.NoClassDefFoundError: > com/google/appengine/api/memcache/MemcacheServiceFactory > > > should we enable anything in the appengine-web config to support Memcache on > the cloud? > > > thx, > > -Shiv > > > -- 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/a32f5365-492e-430c-b14c-6016dc9cc553%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
