(no title)
jabwd
|
1 month ago
I might be very wrong in every way but, string parsing and or manipulating and memoiziation... sound like a super strange combo? For the first you know you're already doing expensive allocations, but the 2nd is also not a pattern I really see apart from in JS codebases. Could you provide more context on how this actually bit you in the behind? memoizing strings seems like a complicated and error prone "welp it feels better now" territory in my mind so I'm genuinely curious.
shermantanktop|1 month ago
Or another great one: new instances of ObjectMapper created inside a method for a single call and then thrown away.
shermantanktop|1 month ago
tyingq|1 month ago
If you're referring to "one-line logger calls that trigger expensive serialization", it's also common in java.