Repository: ignite Updated Branches: refs/heads/ignite-1653 b03ed4d73 -> ff8b745c5
IGNITE-1653 Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/a22d15a4 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/a22d15a4 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/a22d15a4 Branch: refs/heads/ignite-1653 Commit: a22d15a44b8c044db9f94061e7c630346c1e425e Parents: b03ed4d Author: Anton Vinogradov <[email protected]> Authored: Fri Oct 23 16:18:09 2015 +0300 Committer: Anton Vinogradov <[email protected]> Committed: Fri Oct 23 16:18:09 2015 +0300 ---------------------------------------------------------------------- examples/README-LGPL2.txt | 33 +++++++++++++++++++++++++++++++++ examples/README-lgpl.txt | 33 --------------------------------- 2 files changed, 33 insertions(+), 33 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/a22d15a4/examples/README-LGPL2.txt ---------------------------------------------------------------------- diff --git a/examples/README-LGPL2.txt b/examples/README-LGPL2.txt new file mode 100644 index 0000000..0f95971 --- /dev/null +++ b/examples/README-LGPL2.txt @@ -0,0 +1,33 @@ +Apache Ignite Examples +====================== + +This folder contains code examples for various Apache Ignite functionality. + +Examples are shipped as a separate Maven project, so to start running you simply need +to import provided `pom.xml` file into your favourite IDE. + +The examples folder contains he following subfolders: + +- `config` - contains Ignite configuration files needed for examples. +- `memcached` - contains PHP script demonstrating how Ignite Cache can be accessed using Memcached client. +- `rest` - contains PHP script demonstrating how Ignite Cache can be accessed via HTTP API. +- `schema-import` - contains demo project for Apache Ignite Schema Import Utility. Refer to enclosed + README.txt file for more information on how to build and run the demo. +- `src/main/java` - contains Java examples for different Ignite modules and features. +- `src/main/java8` - contains additional set of Java examples utilizing Java 8 lambdas. These examples + are excluded by default, enable `java8` Maven profile to include them (JDK8 is required). +- `src/main/scala` - contains examples demonstrating usage of API provided by Scalar. +- `src/main/java-lgpl` - contains lgpl-based examples for different Ignite modules and features. + + +Starting Remote Nodes +===================== + +Remote nodes for examples should always be started with special configuration file which enables P2P +class loading: `examples/config/example-ignite.xml`. To run a remote node in IDE use `ExampleNodeStartup` class. + + +Java7 vs Java8 +=============== +Some examples (not all) which can benefit from Java8 Lambda support were re-written with Java8 lambdas. +For full set of examples, look at both Java7 and Java8 packages. \ No newline at end of file http://git-wip-us.apache.org/repos/asf/ignite/blob/a22d15a4/examples/README-lgpl.txt ---------------------------------------------------------------------- diff --git a/examples/README-lgpl.txt b/examples/README-lgpl.txt deleted file mode 100644 index 0f95971..0000000 --- a/examples/README-lgpl.txt +++ /dev/null @@ -1,33 +0,0 @@ -Apache Ignite Examples -====================== - -This folder contains code examples for various Apache Ignite functionality. - -Examples are shipped as a separate Maven project, so to start running you simply need -to import provided `pom.xml` file into your favourite IDE. - -The examples folder contains he following subfolders: - -- `config` - contains Ignite configuration files needed for examples. -- `memcached` - contains PHP script demonstrating how Ignite Cache can be accessed using Memcached client. -- `rest` - contains PHP script demonstrating how Ignite Cache can be accessed via HTTP API. -- `schema-import` - contains demo project for Apache Ignite Schema Import Utility. Refer to enclosed - README.txt file for more information on how to build and run the demo. -- `src/main/java` - contains Java examples for different Ignite modules and features. -- `src/main/java8` - contains additional set of Java examples utilizing Java 8 lambdas. These examples - are excluded by default, enable `java8` Maven profile to include them (JDK8 is required). -- `src/main/scala` - contains examples demonstrating usage of API provided by Scalar. -- `src/main/java-lgpl` - contains lgpl-based examples for different Ignite modules and features. - - -Starting Remote Nodes -===================== - -Remote nodes for examples should always be started with special configuration file which enables P2P -class loading: `examples/config/example-ignite.xml`. To run a remote node in IDE use `ExampleNodeStartup` class. - - -Java7 vs Java8 -=============== -Some examples (not all) which can benefit from Java8 Lambda support were re-written with Java8 lambdas. -For full set of examples, look at both Java7 and Java8 packages. \ No newline at end of file
