Joel Ekström

Results 64 comments of Joel Ekström

Thanks for your detailed answer. Yes, I'm starting to see that ideally, all our image URL's should be unique. For the long term, this would save us a lot of...

Thanks for the input! I'll investigate any potential issues related to WAL and in-memory databases. I'll also take a closer look to see if I can find any potential problems...

After some investigation, ~I believe a [temporary database](https://www.sqlite.org/inmemorydb.html#temp_db) is the cleanest way to achieve what I'm looking for here~. EDIT: Since it doesn't seem like different connections can share a...

Yo! I’ve spent a few hours on this but haven’t managed to get it working. I don’t really understand why though, the docs seem pretty clear about the special file...

Here's the fix discussed above: ```objc @interface MyClass @property (nonatomic, strong) NSMutableDictionary *cache; @end @implementation MyClass - (id)objectAtIndexPath:(NSIndexPath *)indexPath { __block id object = nil; [self.connection readWithBlock:^(YapDatabaseReadTransaction *transaction) { YapCollectionKey...

If you have registered a filtered view, it stays updated automatically. However, since you want to actually update the filter function (with a new date to filter by), you will...

If your filtering function isn't too heavy, then this will usually be incredibly fast to do. You can also do it in a background thread by asynchronously registering a new...

Good idea - would also be a natural place to fix #387, since this object can transform the changes on initialization.

Hi! This is currently not supported by the library - it requires some refactoring so each layout function uses an axis modifier. In theory all math should be the same,...