I need to store data in Aerospike. This engine, which supports "bins" ("bin", is similar to a column in a row or a field in a record). On the other hand, I can store my notes as serialized drops. Records are retrieved from the database atomically. That is, I do not need to retrieve some of the "columns" of the record, I need the whole record.
Question: What is the most efficient way to store data for such a scenario in terms of performance? Keep it uneserialized and use the "bins" to describe all the fields of the records, or save it as a serialized blob in 1 column?
nosql aerospike
elgris
source share