This example illustrates how to execute server side java functions.
- Install Apache Geode
- Build and install Apache Geode Native
- Apache Geode Native examples, built and installed
- Set
GEODE_HOMEto the install directory of Apache Geode
-
From a command shell, set the current directory to the
functionexecutiondirectory in your example workspace.$ cd workspace/examples/build/dotnet/functionexecution -
Run the
startserver.ps1script to start the Geode cluster with authentication and create a region.For Windows cmd:
$ powershell.exe -File startserver.ps1For Windows Powershell:
$ startserver.ps1 -
Execute
Debug\dotnet-functionexecution.exe. Expect the following output:Storing id and username in the region Getting the user info from the region rtimmons = Robert Timmons scharles = Sylvia Charles Function Execution Results: Count = 1 value = Robert Timmons value = Sylvia Charles
-
Run the
stopserver.ps1script to gracefully shutdown the Geode cluster.For Windows cmd:
$ powershell.exe -File stopserver.ps1For Windows Powershell:
$ stopserver.ps1