List Question
20 TechQA 2023-08-03T16:56:05.467000Is it a good practice to instantiate a HashSet from an IEnumerable before using Contains()?
209 views
Asked by Amessihel
Does wrapping lock into scope change when lock will be released?
93 views
Asked by Ivan Ivanyuk
Is it worth moving `let` out of loop?
131 views
Asked by AudioBubble
Can I cache getClass.hashCode()?
166 views
Asked by Jin Kwon
All possible Combinations for this set of letternumbers
41 views
Asked by Punit Patel
Is there an example where using React.memo/PureComponent has worse performance than not using it?
48 views
Asked by syimyuzya
Narrow scope of a variable and performance?
174 views
Asked by Jin Kwon
Object dynamic constness
44 views
Asked by Black
Impact of Java streams from GC perspective or handling short-lived objects by the GC
2.2k views
Asked by Aliaksandr Kazlou
C++: Performance impact of if inside loops
2.3k views
Asked by Seriously
Should I minimize the usage of db_session in Pony ORM? What is the purpose of db_session?
1.6k views
Asked by Elijas Dapšauskas
How expensive is the new Gson() constructor in production?
2.4k views
Asked by Bob Cross
perl string catenation and substitution in a single line?
118 views
Asked by Medievalist
Take(10) vs TOP 10 With SqlDataReader?
1.6k views
Asked by BornToCode
Efficiently taking the absolute value of an integer vector in C
913 views
Asked by oink
Possible redundant object creation with Optional#ofNullable?
119 views
Asked by Jin Kwon
In C++, which is better i>-1 or i>=0
1.5k views
Asked by Yogesh
Fragmentation in SQLite used in a round-robin fashion without VACUUM
584 views
Asked by Calpau
SQLite vacuuming / fragmentation and performance degradation
3.3k views
Asked by Calpau
How to optimize a statement of the form "if (A == B) { ...} else if (A < B) {...} else { ....}"
197 views
Asked by Donald Knuth