Package org.apache.gora.cassandra.client

Examples of org.apache.gora.cassandra.client.Mutate.deleteAll()


  @Override
  public boolean delete(K key) throws IOException {
    Mutate mutate = new Mutate();
    for (String family : mapping.getColumnFamilies()) {
      mutate.deleteAll(family);
    }

    client.mutate(key.toString(), mutate);
    return true;
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.