Hello,
I understand that you can set the consistency level if you use the Statement object.
But if I use the mapper as:
MappingManager manager = new MappingManager(session);
Mapper<Token> mapper = manager.mapper(Token.class);
mapper.save(token);
How can I set the consistency leve?
So if I have replication factor of 3, I just want consistency level of one so that the writes are always fast, the system will then replicate it asynchornously for me.
How can I do it with a MappingManager ?
Or do I have to set that when I connect to the cluster first or at the Session level?
Thanks,
C.