Coder Social home page Coder Social logo

The RSS App demand about sugarrecord HOT 5 CLOSED

modo-studio avatar modo-studio commented on September 22, 2024
The RSS App demand

from sugarrecord.

Comments (5)

pepicrft avatar pepicrft commented on September 22, 2024

I need some details @xhzengAIB

  1. Are you using CoreData or Realm?

Could you give more details about what you are planning to do. Thanks!

from sugarrecord.

xhzengAIB avatar xhzengAIB commented on September 22, 2024

Hi! @pepibumur
I'm doing a RSS App, this Entity(Article Model) have a field is readed.

  1. I launched a network request, pull 100000 RSS articles(JSON array).
  2. I need to mark the 100000 RSS articles as readed.

My question is: CoreData how to deal with large amount of data? If there is need to article 10000000 input for persistence, that CoreData. What should I do?

Jack

from sugarrecord.

pepicrft avatar pepicrft commented on September 22, 2024

@xhzengAIB you should do something like this:

SugarRecord.operation(SugarRecordStackType.SugarRecordStackTypeRealm, closure: { (context) -> () in
  let articles: [Article]? = Article.all().find(inContext: context)?
  context.beginWriting() // <- Notifying we're starting the edition
  for articleDict in articlesArray {
    let article: Article? = (articles.filter() { $0.articleID == articleDict["id"] }).first
    if article != nil {
      article!.read = true
    }
  }
  context.endWriting() // <- Notifying that we've finished the edition
})

Notice that instead of fetching articles filtering them by ID I fetch all of them and them filter the array using the filter method available in Swift arrays. @xhzengAIB

from sugarrecord.

xhzengAIB avatar xhzengAIB commented on September 22, 2024

Hi! @pepibumur

This is the transaction processing CoreData?

Jack

from sugarrecord.

pepicrft avatar pepicrft commented on September 22, 2024

This is how you could it with CoreData and SugarRecord @xhzengAIB

from sugarrecord.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.