GRDB Stories

Gwendal Roué
Mar 30, 2016

--

The little things that make the SQLite library GRDB.swift different.

GRDB integrates well with iOS. Today we’ll talk about memory management.

iOS likes applications that do not consume much memory. Small applications stay longer in memory, even in the background, ready to be reactivated at the user’s will.

GRDB makes your database a good iOS citizen by releasing as much memory as possible on low-memory conditions, and when your app enters background: see Memory Management.

https://github.com/groue/GRDB.swift

--

--