You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ignite.apache.org by "Evgenii Zhuravlev (JIRA)" <ji...@apache.org> on 2018/07/17 10:18:00 UTC

[jira] [Created] (IGNITE-9016) Byte arrays are not working as cache keys

Evgenii Zhuravlev created IGNITE-9016:
-----------------------------------------

             Summary: Byte arrays are not working as cache keys
                 Key: IGNITE-9016
                 URL: https://issues.apache.org/jira/browse/IGNITE-9016
             Project: Ignite
          Issue Type: Bug
            Reporter: Evgenii Zhuravlev


it's not possible to retrieve early inserted data with byte[] key:

{code:java}
        IgniteCache<byte[], byte[]> cache = ignite.getOrCreateCache("test");

        byte[] a = "test".getBytes();
        cache.put(a, a);

        cache.get(a); //returns null
{code}




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)