arun1729 / cog

Micro Graph Database for Python Applications
http://cogdb.io
MIT License
300 stars 24 forks source link

column abstraction #3

Closed arun1729 closed 6 years ago

arun1729 commented 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.

arun1729 commented 6 years ago

done