This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM microsoft/dotnet:2.1-sdk | |
WORKDIR /app | |
RUN apt update && apt install default-jdk -y --no-install-recommends | |
COPY *.csproj ./ | |
RUN dotnet restore | |
COPY . ./ | |
ENTRYPOINT ["dotnet", "run"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Concurrent; | |
using System.Collections.Generic; | |
using System.Threading; | |
using System.Threading.Tasks; | |
using Apache.Ignite.Core.Cache; | |
using Apache.Ignite.Core.Cache.Event; | |
using Apache.Ignite.Core.Cache.Query.Continuous; | |
namespace IgniteAsyncStreams |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Concurrent; | |
using System.Collections.Generic; | |
using System.Threading; | |
using Apache.Ignite.Core.Cache; | |
using Apache.Ignite.Core.Cache.Event; | |
using Apache.Ignite.Core.Cache.Query.Continuous; | |
namespace IgniteAsyncStreams | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Concurrent; | |
using System.Collections.Generic; | |
using System.Threading; | |
using System.Threading.Channels; | |
using Apache.Ignite.Core.Cache; | |
using Apache.Ignite.Core.Cache.Event; | |
using Apache.Ignite.Core.Cache.Query.Continuous; | |
namespace IgniteAsyncStreams |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Threading; | |
using Apache.Ignite.Core; | |
using Apache.Ignite.Core.Binary; | |
using Apache.Ignite.Core.Cache.Affinity; | |
using Apache.Ignite.Core.Cache.Configuration; | |
using Apache.Ignite.Core.Events; | |
namespace IgniteSimpleNameMapperTest | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup> | |
<OutputType>Exe</OutputType> | |
<TargetFramework>netcoreapp3.1</TargetFramework> | |
</PropertyGroup> | |
<ItemGroup> | |
<PackageReference Include="Apache.Ignite" Version="2.8.1" /> | |
<PackageReference Include="AutoMapper" Version="10.0.0" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup> | |
<OutputType>Exe</OutputType> | |
<TargetFramework>netcoreapp3.1</TargetFramework> | |
</PropertyGroup> | |
<ItemGroup> | |
<PackageReference Include="Apache.Ignite" Version="2.8.1" /> | |
</ItemGroup> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Microsoft.EntityFrameworkCore; | |
namespace DapperVsEf | |
{ | |
public class BenchContext : DbContext | |
{ | |
public BenchContext(DbContextOptions options) : base(options) | |
{ | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Threading; | |
using Apache.Ignite.Core; | |
using Apache.Ignite.Core.Deployment; | |
namespace server | |
{ | |
class Program | |
{ | |
static void Main(string[] args) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using Apache.Ignite.Core; | |
using Apache.Ignite.Core.Compute; | |
using Apache.Ignite.Core.Deployment; | |
namespace client | |
{ | |
class HelloAction : IComputeAction | |
{ | |
public void Invoke() |
OlderNewer