Replies: 1 comment 4 replies
-
Hey @g3rfx, TinyDB doesn't support join operations. Not just that implementing joins efficiently would require implementing indexes which would increase the code size a lot, but TinyDB reads the underlying database file on every read operation. So you're loading the whole database in memory anyway. Do you think this behavior (loading data on every read operation) should be documented better? |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I wonder how the syntax would look to perform an inner join for two tables without loading both tables to perform the join in memory. For example, something like:
Thank you in advance.
Beta Was this translation helpful? Give feedback.
All reactions