Model variables as entities #255
Labels
No labels
architecture
authentication
backend
bug
ci/cd
cleanup
documentation
duplicate
enhancement
good first issue
help wanted
in progress
invalid
media
mobile
new feature
packaging
question
ui
voice
waiting user input
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: platypush/platypush#255
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The current framework models
variable
andentity
as different tables.This means that variables aren't visible in the new entities dashboard, and it may also cause concurrency issues when SQLite is used as a backend - some updates to variables may occur while the
EntityEngine
is flushing records to the database, and the db may therefore be locked: the variable plugin and the entity engine are not synchronized.