Making News Feed nearly 50% faster on iOS
11–20 of 35 posts
Re: Making News Feed nearly 50% faster on iOS
#12I really hope Apple will come up with a modern alternative to Core Data; it's neat and all, but it just doesn't feel like it's a good match for most situations. In my own anecdote, we had to show a list of autocompletion items - simple enough. Read XML, write a few hundred entries to a Core Data storage - and this list was relatively static, updated only once a week. A week after release, we got crash reports - the X…
Re: Making News Feed nearly 50% faster on iOS
#13Re: Making News Feed nearly 50% faster on iOS
#14Re: Making News Feed nearly 50% faster on iOS
#15I really hope Apple will come up with a modern alternative to Core Data; it's neat and all, but it just doesn't feel like it's a good match for most situations. In my own anecdote, we had to show a list of autocompletion items - simple enough. Read XML, write a few hundred entries to a Core Data storage - and this list was relatively static, updated only once a week. A week after release, we got crash reports - the X…
CoreData is really meant for storing the entries that back your table view. Trying to use it as a universal data model seems unintended.
Re: Making News Feed nearly 50% faster on iOS
#16Re: Making News Feed nearly 50% faster on iOS
#17What bothers me about this industry is that if you were to interview for an iOS position at a place like FB and suggest a KISS type solution, say using PONSOs for the data model, you would immediately be shown the door.
Re: Making News Feed nearly 50% faster on iOS
#18I really hope Apple will come up with a modern alternative to Core Data; it's neat and all, but it just doesn't feel like it's a good match for most situations. In my own anecdote, we had to show a list of autocompletion items - simple enough. Read XML, write a few hundred entries to a Core Data storage - and this list was relatively static, updated only once a week. A week after release, we got crash reports - the X…
Re: Making News Feed nearly 50% faster on iOS
#19What's up with all the Facebook posts ending up at the top of HN lately?
Re: Making News Feed nearly 50% faster on iOS
#20Earlier quoted context omitted.
CoreData is really meant for storing the entries that back your table view. Trying to use it as a universal data model seems unintended.
You might be right that it's best for that, but CoreData pre-dates table views by many years and has always been sold by Apple as a general store for object graphs.