Skip to main content
The 2024 Developer Survey results are live! See the results

Questions tagged [performance]

For questions pertaining to the measurement or improvement of code and application efficiency.

0 votes
0 answers
7 views

Title: Improving Performance for Netting and Settlement Cron Job in Spring JPA

I am working on a netting and settlement process in the banking and finance sector. Specifically, I need to run a cron job every 4 hours and 15 minutes to retrieve data from the transaction table for ...
Hello World's user avatar
-1 votes
0 answers
7 views

Performance Issues in Unity WebGL Build: Seeking Optimization Advice [closed]

we’ve been developing a complex application in Unity that involves extensive rendering and numerous objects. On the PC build, the application performs well with smooth rendering and good response ...
Abtin Zandi's user avatar
0 votes
0 answers
6 views

How can I prevent cancelling of pending requests on router navigation in Nuxt 3?

so I am working on an e-commerce product, where we have to download a lot of third part scripts for user journey tracking. To improve the performance of the application, we are loading these scripts ...
Owais Ahmad's user avatar
0 votes
0 answers
6 views

Material React Table Large collapsible Table rows with virtualization enabled causes scroll lag along with an error

Large collapsible Table rows with virtualization enabled causes scroll lag along with an error (ResizeObserver loop completed with undelivered notifications) I require to render very large amounts of ...
Muhammad Bin Kashif's user avatar
1 vote
4 answers
74 views

Find row in Matrix A which is closest two Matrix B

Lets say I have two matrices A and B given by set.seed(123) m1 = matrix(runif(10*5), nrow = 10, ncol = 5) m2 = matrix(runif(10*5), nrow = 10, ncol = 5) I want to find for each row in matrix A the row ...
MGP's user avatar
  • 2,511
1 vote
1 answer
41 views

Accessing pointer fields through properties

Is it possible to avoid overhead of property-method call in this case (somehow forcing compiler inline? I know this more like an Alias but there is no such thing in C#): unsafe public static class ...
SuRGeoNix's user avatar
  • 617