Package com.impetus.client.entities

Examples of com.impetus.client.entities.RedisPrimeUser


        final String userId = "1";
        final int tweetId = 12;
        final UUID timeLineId = UUID.randomUUID();
        final Date tweetDate = new Date();
        RedisCompoundKey compoundKey = new RedisCompoundKey(userId, tweetId, timeLineId);
        RedisPrimeUser user = new RedisPrimeUser(compoundKey);
        user.setTweetBody("My tweet");
        user.setTweetDate(tweetDate);
        em.persist(user);

        em.clear(); // clear cache.

        RedisPrimeUser found = em.find(RedisPrimeUser.class, compoundKey);
        Assert.assertNotNull(found);
        Assert.assertNotNull(found.getKey());
        Assert.assertEquals(userId, found.getKey().getUserId());
        Assert.assertEquals(tweetDate, found.getTweetDate());
        em.remove(found);

        em.clear(); // clear cache.

        found = em.find(RedisPrimeUser.class, compoundKey);
View Full Code Here

TOP

Related Classes of com.impetus.client.entities.RedisPrimeUser

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.