You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ignite.apache.org by "Igor Sapego (JIRA)" <ji...@apache.org> on 2017/08/16 13:03:00 UTC

[jira] [Updated] (IGNITE-6081) .NET: Cannot get from cache values which were stored in cache with PutAll.

     [ https://issues.apache.org/jira/browse/IGNITE-6081?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Igor Sapego updated IGNITE-6081:
--------------------------------
    Priority: Critical  (was: Major)

> .NET: Cannot get from cache values which were stored in cache with PutAll.
> --------------------------------------------------------------------------
>
>                 Key: IGNITE-6081
>                 URL: https://issues.apache.org/jira/browse/IGNITE-6081
>             Project: Ignite
>          Issue Type: Bug
>          Components: platforms
>    Affects Versions: 2.1
>            Reporter: Igor Sapego
>            Assignee: Pavel Tupitsyn
>            Priority: Critical
>
> If you try to put multiple non-primitive values to cache using {{PutAll}}, you'd get an exception on attempt to read those values. Code example below:
> {code}
> var entries = new Dictionary<long, SomeType>();
> for (int i = 0; i < 100; i++)
>     entries.Add(i, new SomeType { Id = i });
> var cache = Ignition.GetIgnite().GetCache<long, SomeType>("CacheName");
> cache .PutAll(entries);
> cache.Get(42);
> {code}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)