You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ag...@apache.org on 2017/04/10 17:42:09 UTC

ignite git commit: Fixing .NET examples compilation

Repository: ignite
Updated Branches:
  refs/heads/ignite-3477-master ff5b3e168 -> be7296c52


Fixing .NET examples compilation


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/be7296c5
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/be7296c5
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/be7296c5

Branch: refs/heads/ignite-3477-master
Commit: be7296c525a1a9b9e974415365b535e28c5716f7
Parents: ff5b3e1
Author: Alexey Goncharuk <al...@gmail.com>
Authored: Mon Apr 10 20:42:29 2017 +0300
Committer: Alexey Goncharuk <al...@gmail.com>
Committed: Mon Apr 10 20:42:29 2017 +0300

----------------------------------------------------------------------
 .../Apache.Ignite.Examples/Datagrid/MultiTieredCacheExample.cs     | 2 --
 1 file changed, 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/be7296c5/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/MultiTieredCacheExample.cs
----------------------------------------------------------------------
diff --git a/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/MultiTieredCacheExample.cs b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/MultiTieredCacheExample.cs
index 567f1b9..c40814c 100644
--- a/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/MultiTieredCacheExample.cs
+++ b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/MultiTieredCacheExample.cs
@@ -69,8 +69,6 @@ namespace Apache.Ignite.Examples.Datagrid
                     {
                         MaxSize = 10 // Maximum number of entries that will be stored in Java heap. 
                     },
-                    // Limit off-heap to roughly 10 entries. Actual entry count will be lower due to metadata overhead.
-                    OffHeapMaxMemory = EntrySize * 10,
                 };
 
                 ICache<int, byte[]> cache = ignite.GetOrCreateCache<int, byte[]>(cacheCfg);