My application keeps receiving a really small event that it needs to store and I was thinking which is the best way to handle it. The table for this event would be something like this:
EVENT
id
timestamp
some_data (integer)
fk_to_some_holder_table
If I keep storing each event as a row, will there be some disadvantage against an implementation with some kind of blob compression/treatment? Or am I going too far here?
I’m using Firebird 2.1. If needed, I could upgrade to Firebird 2.5.
Thanks in advance.
I’m sure you’re better off with “traditional row based record”:
According to the “What are the technical limits of Firebird?” article maximum size of one table is 32TB or 16G rows.
I don’t think there is any difference between 2.1 and 2.5 in this specific case, but I’d use 2.5 because of other/general improvements.