Robbie

Results 103 comments of Robbie

> If a parent and child record are modified, are they always sequentially close to each other? IOW, if the max change limit is 400, and 500 objects are imported,...

Thank you! This project is in need of several demo projects. I'll work on integrating this, as well as creating a few other samples to demonstrate other features.

> Is it against the ideas of the project? Nope. It sounds like a great idea. If memory serves me correctly, the only reason YapDatabase doesn't support this is because...

Some initial investigation & thoughts: Since every `:memory:` connection is different/unique, YapDatabase won't be able to share the connection. So that's out. However, the docs for [sqlite3_open_v2](https://sqlite.org/c3ref/open.html) mention that we...

> I would appreciate some input on how the API could look if this was implemented Assuming we still need a unique name (for the URI-based filename): - Add init...

> the code tried to set the property `superclass` of the `CKRecord` to `TSItem` Haha. That's not going to work... > Since iOS 8, @protocol NSObject declares some methods as...

You've stumbled on several issues within YapDatabase that I've been wanting to fix for some time now. The general problem is that YapDatabase caches a bunch of stuff in-memory. This...

> Rather than writing changesets to the database, we experimented with using XPC to pass changesets in-memory. This would allow for the caches to stay up to date across processes...

Correct, there isn't a baked-in solution for this. That is, there isn't anything simple like an existing rateLimit property. You could implement something like exponential back-off once you start receiving...