I\'m looking to implement a system that searches for duplicate entries before saving new entries, mostly by IP address.Since NoSQL databases have eventual consistency, this doesn\'t seem like a natura
I have code that uses Hector to access Cassandra and needs to create column families on the fly if and only if they don\'t already exist.What is the proper way to check for the existence of a column f
With the following code I try to update a row Keyspace fKeyspace = HFactory.createKeyspace(KEYSPACE, fCluster);
I\'m using hector-core 0.8.0-1 and Cassandra 0.8.0 to test a addCounter operation, but I found my code cannot insert any data into the CF, can anyone tell me the reason?
I am trying to insert something into cassandra 0.7.6 from Erlang R14B02 (through thrift 0.6.1) I am doing the following:
Does anyone have advice on using cassandra with scala? There is no native scala-cassandra client supporting cassandra version 8.0+, so I have to use开发者_Go百科 hector, and it seems to work OK but no
I am requiring two classes from the PHPCassa project into my class. Before I made my Class static I was able to call the method in selectColumnFamily. But now it does not work. Is there a way around t
I am planning on using ElasticSearch to index开发者_StackOverflow社区 my Cassandra database. I am wondering if anyone has seen the practical limits of ElasticSearch. Do things get slow in the petabyte
Recently I\'ve come up against efficient retrieval of several columns from single row in single column family. Currently, I am using Pelops as Cassandra API. The question is what to do if I want to ge
Is there a way to catch a connection error when using pelops in Java?I have the following code but for some reason, I\'m not getting to my catch block.