Any sort of Early / Beta access?

hmm the book seems to provide better Database persisting using Vapor Cloud but for small, side project, I wish there’s also a how-to deploy to Vapor cloud using sqlite :slight_smile:

@vinamelody most Cloud providers don’t have persistence storage. So if you use SQLite and your app restarts (for whatever reasons, memory, moving server etc) you’ll lose any data with SQLite. This is why it isn’t included in the book

i see… hmm sorry I didn’t know about this

Also SQLite should never be used in production, it can’t scale or handle high loads

Okay, gotta remember this principle :+1: