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
Almost every database wrapper converts Rust native type to string and writes it to database that way. This is both slow and uses too much storage. Instead, use BYTEA type and write datas in bytes.
Proposal Description
Almost every database wrapper converts Rust native type to string and writes it to database that way. This is both slow and uses too much storage. Instead, use
BYTEA
type and write datas in bytes.Example impl:
The text was updated successfully, but these errors were encountered: