You can use IgniteCache.put(key,value) method to store key/value pairs in cache.
On Fri, Apr 15, 2016 at 11:31 AM, tusharnakra <[email protected]> wrote: > I think you did not understand my question. I want to add a new value to > the > cache, one that is not already present in the database table. > > Example: > > Right now the cache has the following: > > [key=PersonKey [id=2], val=Person [id=2, firstName=Marc, lastName=Robinson, > orgid=300, salary=12000]] > [key=PersonKey [id=1], val=Person [id=1, firstName=Roy, lastName=Daniel, > orgid=200, salary=1000]] > [key=PersonKey [id=3], val=Person [id=3, firstName=Jacob, lastName=Kimpson, > orgid=300, salary=2000]] > [key=PersonKey [id=4], val=Person [id=4, firstName=Caleb, lastName=Hass, > orgid=100, salary=4000]] > > > And I want to add something like: > [key=PersonKey [id=5], val=Person [id=5, firstName=Christian, > lastName=Chon, orgid=400, salary=2000]] > > How do I do that?? > > I know that any updates made to the cache will be written to the database > with write through, that wasn't my question. > > > > > -- > View this message in context: > http://apache-ignite-users.70518.x6.nabble.com/UPDATE-sql-query-in-ignite-tp4180p4234.html > Sent from the Apache Ignite Users mailing list archive at Nabble.com. >
