Return-Path: X-Original-To: apmail-geode-commits-archive@minotaur.apache.org Delivered-To: apmail-geode-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4E535188C7 for ; Wed, 27 May 2015 22:09:36 +0000 (UTC) Received: (qmail 23130 invoked by uid 500); 27 May 2015 22:09:36 -0000 Delivered-To: apmail-geode-commits-archive@geode.apache.org Received: (qmail 23099 invoked by uid 500); 27 May 2015 22:09:36 -0000 Mailing-List: contact commits-help@geode.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@geode.incubator.apache.org Delivered-To: mailing list commits@geode.incubator.apache.org Received: (qmail 23090 invoked by uid 99); 27 May 2015 22:09:36 -0000 Received: from Unknown (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 27 May 2015 22:09:36 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id AA4AD1A34B1 for ; Wed, 27 May 2015 22:09:35 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 1.791 X-Spam-Level: * X-Spam-Status: No, score=1.791 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, T_RP_MATCHES_RCVD=-0.01, URIBL_BLOCKED=0.001] autolearn=disabled Received: from mx1-us-east.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id nHWpAIv9wiFs for ; Wed, 27 May 2015 22:09:20 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-us-east.apache.org (ASF Mail Server at mx1-us-east.apache.org) with SMTP id E6733453C8 for ; Wed, 27 May 2015 22:09:19 +0000 (UTC) Received: (qmail 22319 invoked by uid 99); 27 May 2015 22:09:19 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 27 May 2015 22:09:19 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 5A089E0419; Wed, 27 May 2015 22:09:19 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: markito@apache.org To: commits@geode.incubator.apache.org Message-Id: <52f040efab7b47e897ce2bf0019e0bda@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: incubator-geode git commit: Adding REST docs reference Date: Wed, 27 May 2015 22:09:19 +0000 (UTC) Repository: incubator-geode Updated Branches: refs/heads/develop 1c9dc5a9b -> 1fcb7b97a Adding REST docs reference Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/1fcb7b97 Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/1fcb7b97 Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/1fcb7b97 Branch: refs/heads/develop Commit: 1fcb7b97ae5a1bbbee2cb07c17ed784eb6aad7aa Parents: 1c9dc5a Author: William Markito Authored: Wed May 27 15:03:17 2015 -0700 Committer: William Markito Committed: Wed May 27 15:09:04 2015 -0700 ---------------------------------------------------------------------- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/1fcb7b97/README.md ---------------------------------------------------------------------- diff --git a/README.md b/README.md index d7e3a7d..8ac89a0 100755 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Overview -Geode is a data management platform that provides real-time, consistent access to data-intensive applications throughout widely distributed cloud architectures. +Geode is a data management platform that provides real-time, consistent access to data-intensive applications throughout widely distributed cloud architectures. Geode pools memory, CPU, network resources, and optionally local disk across multiple processes to manage application objects and behavior. It uses dynamic replication and data partitioning techniques to implement high availability, improved performance, scalability, and fault tolerance. In addition to being a distributed data container, Geode is an in-memory data management system that provides reliable asynchronous event notifications and guaranteed message delivery. @@ -54,7 +54,7 @@ _HelloWorld.java_ import java.util.Map; import com.gemstone.gemfire.cache.Region; import com.gemstone.gemfire.cache.client.*; - + public class HelloWorld { public static void main(String[] args) throws Exception { ClientCache cache = new ClientCacheFactory() @@ -63,10 +63,10 @@ _HelloWorld.java_ Region region = cache .createClientRegionFactory(ClientRegionShortcut.CACHING_PROXY) .create("region"); - + region.put("1", "Hello"); region.put("2", "World"); - + for (Map.Entry entry : region.entrySet()) { System.out.format("key = %s, value = %s\n", entry.getKey(), entry.getValue()); } @@ -86,5 +86,5 @@ Geode applications can be written in a number of client technologies: * Java using the Geode client API or embedded using the Geode peer API * [Spring Data GemFire](http://projects.spring.io/spring-data-gemfire/) or [Spring Cache](http://docs.spring.io/spring/docs/current/spring-framework-reference/html/cache.html) * [Python](https://github.com/gemfire/py-gemfire-rest) -* REST +* [REST](http://geode-docs.cfapps.io/docs/geode_rest/book_intro.html) * [[memcached|Moving from memcached to gemcached]]