DEV Community

Discussion on: I've released over 100 apps in React Native since 2015, Ask Me Anything!

Collapse
 
aarondrs profile image
Aaron Rodríguez

Hi Kyle well done. so many projects. I'm worried about the performance for huge sets of data. How did you handle that? I would like to know your thoughts.

Thanks.

Collapse
 
kylessg profile image
Kyle Johnson • Edited

The performance of what with huge datasets though? I guess the main thing you'll want to be worried about when dealing with large amounts of data is how you're rendering it.

In which case, I'd say as long as you're virtualizing the rendered data (i.e. using FlatList or something similar) you'll be fine.

That being said, if you're worried, write a mock test against said data!

Collapse
 
aarondrs profile image
Aaron Rodríguez

Hi Kyle, you were right. Just using some components and applying best practices in general we can have a good performance.

Thanks a lot.