blob: 5a69b74c44417dba3d1a8a4562a5c18e90ab6dac [file]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
namespace Apache.Ignite.Examples.Thick.Cache.Store
{
using System;
using System.Collections.Generic;
using Apache.Ignite.Core;
using Apache.Ignite.Core.Cache.Configuration;
using Apache.Ignite.Examples.Shared;
using Apache.Ignite.Examples.Shared.Cache;
using Apache.Ignite.Examples.Shared.Models;
/// <summary>
/// This example demonstrates a custom cache store usage.
/// </summary>
public static class Program
{
private const string CacheName = "dotnet_cache_with_store";
public static void Main()
{
using (var ignite = Ignition.Start(Utils.GetServerNodeConfiguration()))
{
Console.WriteLine();
Console.WriteLine(">>> Cache store example started.");
var cache = ignite.GetOrCreateCache<int, Employee>(new CacheConfiguration
{
Name = CacheName,
ReadThrough = true,
WriteThrough = true,
KeepBinaryInStore = false, // Cache store works with deserialized data.
CacheStoreFactory = new EmployeeStoreFactory()
});
// Clean up caches on all nodes before run.
cache.Clear();
Console.WriteLine();
Console.WriteLine(">>> Cleared values from cache.");
Console.WriteLine(">>> Current cache size: " + cache.GetSize());
// Load entries from store which pass provided filter.
cache.LoadCache(new EmployeeStorePredicate());
Console.WriteLine();
Console.WriteLine(">>> Loaded entry from store through ICache.LoadCache().");
Console.WriteLine(">>> Current cache size: " + cache.GetSize());
// Load entry from store calling ICache.Get() method.
Employee emp = cache.Get(2);
Console.WriteLine();
Console.WriteLine(">>> Loaded entry from store through ICache.Get(): " + emp);
Console.WriteLine(">>> Current cache size: " + cache.GetSize());
// Put an entry to the cache
cache.Put(3, new Employee(
"James Wilson",
12500,
new Address("1096 Eddy Street, San Francisco, CA", 94109),
new List<string> { "Human Resources", "Customer Service" }
));
Console.WriteLine();
Console.WriteLine(">>> Put entry to cache.");
Console.WriteLine(">>> Current cache size: " + cache.GetSize());
// Clear values again.
cache.Clear();
Console.WriteLine();
Console.WriteLine(">>> Cleared values from cache again.");
Console.WriteLine(">>> Current cache size: " + cache.GetSize());
// Read values from cache after clear.
Console.WriteLine();
Console.WriteLine(">>> Read values after clear:");
for (int i = 1; i <= 3; i++)
Console.WriteLine(">>> Key=" + i + ", value=" + cache.Get(i));
}
Console.WriteLine();
Console.WriteLine(">>> Example finished, press any key to exit ...");
Console.ReadKey();
}
}
}