marcoarment

Results 15 comments of marcoarment

Is this under very heavy logging activity? Roughly how many messages are logged at this point in execution? Tens? Hundreds? Thousands? More? There's no good efficient way to track new...

Interesting idea. Keep in mind that the way the document root is structured, the only ways to do this would be: - Add a Redirect to .htaccess for every custom...

Honestly, I have no idea. I've never used views in SQLite and have no idea how they behave.

To be clear, in your use-case, is `loadId` the primary key, so it's avoiding duplicate-insert errors by changing the primary key on every save? Seems like a really bad idea...

@NZKoz The main goals for the `should/didInsert/Update/Delete` and `FCModelSaveResult` removal were: - Reduce the number of states an object can exist in, and discourage keeping objects around with unsaved changes...

Sorry, I've been busy trying to get the latest Overcast update out the door. I'm going to be tackling this in the next major update. I'll be writing the FCModel2/whatever...

Made a few improvements tonight: - **Cross-process data-change triggers** so you can have read/write iOS extensions (I think). - **All variadic functions are gone** for Swift friendliness and general code/complexity...

I already hate it without variadics. Putting them back.

Just committed fc5b4686 with restored variadic `SELECT` functions (now coexisting with argument-array variants of each one). I also **removed** the "keyed" versions that returned dictionaries (too much code complexity/duplication for...

@jlnr Just committed 7b37ea9b with va_list variants. I don't know enough about building with Swift to integrate that Stack Overflow technique properly in a build and test it — any...