I'm using sqlitedata in an existing grdb app is it still as performant as stated in the readme? #445
|
I've followed this page in the docs: https://swiftpackageindex.com/pointfreeco/sqlite-data/main/documentation/sqlitedata/addingtogrdb Now having this kind of integration of sqlitedata is it still as performant as if you just used sqlitedata on its own (I know it uses grdb under the hood). The performance benchmarks are stated here: https://github.com/pointfreeco/sqlite-data?tab=readme-ov-file#performance |
Answered by
stephencelis
Apr 14, 2026
Replies: 1 comment 2 replies
|
@Axedyson While we use GRDB under the hood, we bypass some of its APIs to improve performance, like in the benchmark above. As long as you are using |
2 replies
Answer selected by
Axedyson
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@Axedyson While we use GRDB under the hood, we bypass some of its APIs to improve performance, like in the benchmark above. As long as you are using
@Tableand SQLiteData's adapter for GRDB, you'll see faster decoding.