You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add searchable tags to task schema. Two ways of doing this:
Relational database
Basically, two new schemas Tags and TagDefinitions would be added. Tags would relate tag ids to task ids. TagDefintions would store the definitions to task ids.
Pros:
Easy updating of tag definitions
Fastest querying
Cons:
Extra database, might get big depending on number of tasks/tags
Add tags key in task schema
Just add an array to the task schema
Pros:
Easy updating of tag definitions
Fast querying
Cons:
Can't update/delete tags very easily
Can't see all tags very easily
The text was updated successfully, but these errors were encountered:
Add searchable tags to task schema. Two ways of doing this:
Relational database
Basically, two new schemas
Tags
andTagDefinitions
would be added.Tags
would relate tag ids to task ids.TagDefintions
would store the definitions to task ids.Pros:
Cons:
Add
tags
key in task schemaJust add an array to the task schema
Pros:
Cons:
The text was updated successfully, but these errors were encountered: