Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google App Engine and key-value stores

I am looking at various options for developing a web app in the cloud and have been looking at GAE using Python. It has everything I need to develop the application. But I can not find a key-value store for it. In particular a key-value store that can scale. I have been looking at Redis but it is used for rails....

I have 2 questions regarding this.

1) Is a key-value store really needed for a high performance web app running on GAE?

2) Are there any well supported key-value stores for GAE?

All help will be greatly appreciated!

like image 487
Rup Avatar asked Nov 08 '11 06:11

Rup


1 Answers

Google App Engine comes with a high performance, scalable Datastore implementation.

It also has support for a Memcached (key-value) implementation. It is up to your requirements for scale and functionality of the application which of the two options you chose.

like image 193
inder Avatar answered Sep 25 '22 11:09

inder