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 |
Beta Was this translation helpful? Give feedback.
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 |
Beta Was this translation helpful? Give feedback.
@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.