Closed arun1729 closed 6 years ago
At database level, implement column abstraction. Column should be stored as value in the kv store. DB Object parses columns and returns column values.
A straight forward implementation would be simply store a py dict or JSON in values. Each property being a column name.
Columns will eventually be used for "select" queries.
Use dumps to serialize json: https://docs.python.org/2/library/json.html and then index it.
done
At database level, implement column abstraction. Column should be stored as value in the kv store. DB Object parses columns and returns column values.
A straight forward implementation would be simply store a py dict or JSON in values. Each property being a column name.
Columns will eventually be used for "select" queries.
Use dumps to serialize json: https://docs.python.org/2/library/json.html and then index it.