Andrés de la Peña

Results 19 comments of Andrés de la Peña

Hi, This would be an interesting feature. Highlighting should be done during post reconciliation processing, requiring to introduce Lucene processing in the coordinator node to replace the column contents by...

The problem seems to point to a wrong/incompatible implementation of a Lucene analyzer being called during the tests. - Which version of the Lucene index plugin are you using? -...

@anthonymejia we have plans to add support for static columns in 2.x, probably in not more than a month.

No, it isn't. The last releases only allow indexing non-static columns in tables containing static column, but the static columns themselves can't be indexed. In future releases we could add...

Hi @ddorian , I think that updating all the documents in a partition when there is a change in one of their static columns is very risky. Performace-wise, it would...

Hi @thanigaiv, It is not currently possible, but it probably could be done with a custom mapper designed for this purpose. Are you encrypting each cell value?

Mappers are [here](https://github.com/Stratio/cassandra-lucene-index/tree/branch-3.0.4/plugin/src/main/java/com/stratio/cassandra/lucene/schema/mapping). The idea is that you can modify one of the existing mappers or maybe create an new [SingleColumnMapper](https://github.com/Stratio/cassandra-lucene-index/blob/branch-3.0.4/plugin/src/main/java/com/stratio/cassandra/lucene/schema/mapping/SingleColumnMapper.java) and decrypt your data in the method [addIndexedFields](https://github.com/Stratio/cassandra-lucene-index/blob/branch-3.0.4/plugin/src/main/java/com/stratio/cassandra/lucene/schema/mapping/SingleColumnMapper.java#L123) before...

What do you mean by count? If you mean count queries, they can be done in the same way as it is done in regular CQL queries: ``` SELECT COUNT(*)...

This project has been discontinued in favour of [Cassandra Lucene Index](https://github.com/Stratio/cassandra-lucene-index), which maintains exactly the same features being a plugin of Apache Cassandra instead of a fork. Also, the Docker...