This is an automated email from the ASF dual-hosted git repository.
ptupitsyn pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git.
from 00cb1ad IGNITE-12764: Thin JDBC streaming fails BatchUpdateException
if function is used (#7615)
add 0f55d76 IGNITE-12883 .NET: Rename PlatformNearCache to PlatformCache,
mark as Experimental
No new revisions were added by this update.
Summary of changes:
.../ignite/configuration/CacheConfiguration.java | 25 +-
...ration.java => PlatformCacheConfiguration.java} | 18 +-
.../processors/cache/GridCacheMapEntry.java | 34 +-
.../cache/distributed/dht/GridDhtCacheEntry.java | 2 +-
.../cache/distributed/near/GridNearCacheEntry.java | 6 +-
.../processors/platform/PlatformContext.java | 18 +-
.../processors/platform/PlatformContextImpl.java | 24 +-
.../processors/platform/PlatformProcessorImpl.java | 16 +-
.../processors/platform/cache/PlatformCache.java | 8 +-
.../cache/PlatformCacheEntryFilterImpl.java | 20 +-
.../platform/callback/PlatformCallbackGateway.java | 12 +-
.../platform/callback/PlatformCallbackOp.java | 4 +-
.../platform/utils/PlatformConfigurationUtils.java | 34 +-
.../Apache.Ignite.Benchmarks.csproj | 4 +-
.../Apache.Ignite.Benchmarks/BenchmarkRunner.cs | 2 +-
.../Apache.Ignite.Benchmarks/Config/benchmark.xml | 20 +-
...nchmark.cs => GetWithPlatformCacheBenchmark.cs} | 8 +-
...nchmark.cs => PutWithPlatformCacheBenchmark.cs} | 8 +-
.../Interop/ScanQueryBenchmark.cs | 12 +-
.../Apache.Ignite.Core.Tests.DotNetCore.csproj | 41 ++-
.../Apache.Ignite.Core.Tests.csproj | 17 +-
.../Cache/NearCacheTest.cs | 179 ++++++++++
.../Cache/{Near => Platform}/FailingCacheStore.cs | 2 +-
.../Cache/{Near => Platform}/Foo.cs | 2 +-
.../PlatformCacheTest.cs} | 395 ++++++++++-----------
.../PlatformCacheTestCreateDestroy.cs} | 168 ++-------
.../PlatformCacheTopologyChangeTest.cs} | 124 +++----
.../ScanQueryNoPlatformCacheFilter.cs} | 10 +-
.../ScanQueryPlatformCacheFilter.cs} | 10 +-
.../StoreNoPlatformCacheFilter.cs} | 12 +-
.../Config/full-config.xml | 2 +-
.../IgniteConfigurationSerializerTest.cs | 10 +-
.../Apache.Ignite.Core.Tests/IgniteUtilsTest.cs | 16 +-
.../Services/ServiceProxyTest.cs | 2 +-
.../Apache.Ignite.Core/Apache.Ignite.Core.csproj | 14 +-
.../Apache.Ignite.Core/Cache/CachePeekMode.cs | 8 +-
.../Cache/Configuration/CacheConfiguration.cs | 13 +-
...figuration.cs => PlatformCacheConfiguration.cs} | 16 +-
.../platforms/dotnet/Apache.Ignite.Core/IIgnite.cs | 28 +-
.../IgniteConfigurationSection.xsd | 6 +-
.../Impl/Cache/CacheEntryFilterHolder.cs | 16 +-
.../Apache.Ignite.Core/Impl/Cache/CacheImpl.cs | 219 ++++++------
.../Apache.Ignite.Core/Impl/Cache/CacheOp.cs | 2 +-
.../INearCache.cs => Platform/IPlatformCache.cs} | 12 +-
.../NearCache.cs => Platform/PlatformCache.cs} | 38 +-
.../PlatformCacheEntry.cs} | 10 +-
.../PlatformCacheManager.cs} | 88 ++---
...rQueryCursor.cs => PlatformCacheQueryCursor.cs} | 22 +-
.../Apache.Ignite.Core/Impl/Client/IgniteClient.cs | 4 +-
.../Impl/Common/{Platform.cs => PlatformType.cs} | 2 +-
.../Apache.Ignite.Core/Impl/IIgniteInternal.cs | 6 +-
.../dotnet/Apache.Ignite.Core/Impl/Ignite.cs | 34 +-
.../dotnet/Apache.Ignite.Core/Impl/IgniteUtils.cs | 12 +-
.../Impl/Services/ServiceDescriptor.cs | 4 +-
.../Impl/Services/ServiceProxySerializer.cs | 6 +-
.../Apache.Ignite.Core/Impl/Services/Services.cs | 10 +-
.../Impl/Unmanaged/UnmanagedCallbackOp.cs | 4 +-
.../Impl/Unmanaged/UnmanagedCallbacks.cs | 20 +-
.../Datagrid/NearCacheExample.cs | 10 +-
59 files changed, 951 insertions(+), 918 deletions(-)
rename
modules/core/src/main/java/org/apache/ignite/configuration/{PlatformNearCacheConfiguration.java
=> PlatformCacheConfiguration.java} (81%)
rename
modules/platforms/dotnet/Apache.Ignite.Benchmarks/Interop/{GetNearBenchmark.cs
=> GetWithPlatformCacheBenchmark.cs} (86%)
rename
modules/platforms/dotnet/Apache.Ignite.Benchmarks/Interop/{PutNearBenchmark.cs
=> PutWithPlatformCacheBenchmark.cs} (85%)
create mode 100644
modules/platforms/dotnet/Apache.Ignite.Core.Tests/Cache/NearCacheTest.cs
rename modules/platforms/dotnet/Apache.Ignite.Core.Tests/Cache/{Near =>
Platform}/FailingCacheStore.cs (97%)
rename modules/platforms/dotnet/Apache.Ignite.Core.Tests/Cache/{Near =>
Platform}/Foo.cs (97%)
rename
modules/platforms/dotnet/Apache.Ignite.Core.Tests/Cache/{Near/CacheNearTest.cs
=> Platform/PlatformCacheTest.cs} (82%)
rename
modules/platforms/dotnet/Apache.Ignite.Core.Tests/Cache/{Near/CacheNearCreateDestroy.cs
=> Platform/PlatformCacheTestCreateDestroy.cs} (57%)
rename
modules/platforms/dotnet/Apache.Ignite.Core.Tests/Cache/{Near/CacheNearTopologyChangeTest.cs
=> Platform/PlatformCacheTopologyChangeTest.cs} (86%)
rename
modules/platforms/dotnet/Apache.Ignite.Core.Tests/Cache/{Near/ScanQueryNoNearCacheFilter.cs
=> Platform/ScanQueryNoPlatformCacheFilter.cs} (79%)
rename
modules/platforms/dotnet/Apache.Ignite.Core.Tests/Cache/{Near/ScanQueryNearCacheFilter.cs
=> Platform/ScanQueryPlatformCacheFilter.cs} (84%)
rename
modules/platforms/dotnet/Apache.Ignite.Core.Tests/Cache/{Near/StoreNoNearCacheFilter.cs
=> Platform/StoreNoPlatformCacheFilter.cs} (81%)
rename
modules/platforms/dotnet/Apache.Ignite.Core/Cache/Configuration/{PlatformNearCacheConfiguration.cs
=> PlatformCacheConfiguration.cs} (85%)
rename
modules/platforms/dotnet/Apache.Ignite.Core/Impl/Cache/{Near/INearCache.cs =>
Platform/IPlatformCache.cs} (89%)
rename
modules/platforms/dotnet/Apache.Ignite.Core/Impl/Cache/{Near/NearCache.cs =>
Platform/PlatformCache.cs} (83%)
rename
modules/platforms/dotnet/Apache.Ignite.Core/Impl/Cache/{Near/NearCacheEntry.cs
=> Platform/PlatformCacheEntry.cs} (90%)
rename
modules/platforms/dotnet/Apache.Ignite.Core/Impl/Cache/{Near/NearCacheManager.cs
=> Platform/PlatformCacheManager.cs} (63%)
rename
modules/platforms/dotnet/Apache.Ignite.Core/Impl/Cache/Query/{NearQueryCursor.cs
=> PlatformCacheQueryCursor.cs} (85%)
rename modules/platforms/dotnet/Apache.Ignite.Core/Impl/Common/{Platform.cs =>
PlatformType.cs} (97%)