I have worked with other NoSQL databases that support the concept of a "get" by Primary Key rather than a "select".
The advantage of a "get" is that there is no SQL/CQL/OQL/whatever to parse or process, so it's much much faster.
Is there anything similar in the Cassandra API where I can simply "get" an entire row by primary key without Cassandra having to parse CQL? (Or is CQL parsing so simple and fast that it makes no measurable difference?)