I understand how and what happens when we use MODE_THREADLOCAL and MODE_INHERITABLETHREADLOCAL in Spring Security Strategy. What I don't understand is, why would someone use MODE_THREADLOCAL over MODE_INHERITABLETHREADLOCAL.
- Is there a memory impact with using one over the other. If so, is it significant enough?
- What is a typical business/functional usecase for using MODE_INHERITABLETHREADLOCAL?
- Any performance different with using one over the other?