blob: 46705165428f67858471005d78b212c3fe858781 [file] [log] [blame]
/*
* 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.Thin.Cache.QueryScanThin
{
using System;
using Apache.Ignite.Core;
using Apache.Ignite.Core.Cache.Configuration;
using Apache.Ignite.Core.Cache.Query;
using Apache.Ignite.Core.Client;
using Apache.Ignite.Core.Client.Cache;
using Apache.Ignite.Examples.Shared;
using Apache.Ignite.Examples.Shared.Cache;
using Apache.Ignite.Examples.Shared.Models;
/// <summary>
/// This example demonstrates a Scan query with a remote filter.
/// <para />
/// This example requires an Ignite server node with <see cref="ScanQueryFilter"/> type loaded,
/// run ServerNode project to start it:
/// * dotnet run -p ServerNode.csproj
/// </summary>
public static class Program
{
private const string EmployeeCacheName = "dotnet_cache_query_scan_employee";
public static void Main()
{
using (IIgniteClient ignite = Ignition.StartClient(Utils.GetThinClientConfiguration()))
{
Console.WriteLine();
Console.WriteLine(">>> Cache scan query example started.");
var employeeCache = ignite.GetOrCreateCache<int, Employee>(
new CacheClientConfiguration(EmployeeCacheName, new QueryEntity(typeof(int), typeof(Employee))));
Utils.PopulateCache(employeeCache);
const int zip = 94109;
var qry = employeeCache.Query(new ScanQuery<int, Employee>(new ScanQueryFilter(zip)));
Console.WriteLine();
Console.WriteLine(">>> Employees with zipcode {0} (scan):", zip);
foreach (var entry in qry)
Console.WriteLine(">>> " + entry.Value);
Console.WriteLine();
}
Console.WriteLine();
Console.WriteLine(">>> Example finished, press any key to exit ...");
Console.ReadKey();
}
}
}