Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is EPiServer threadsafe?

I can't find any information about this on either www.episerver.com or world.episerver.com, anyone knows?

like image 272
thr Avatar asked Oct 09 '08 07:10

thr


2 Answers

From what I've seen Episerver uses two mechanisms to achieve thread-safety:

  • Locking (when initializing expensive resources)
  • Immutable data (when passing page data around)
like image 101
Cristian Libardo Avatar answered Nov 03 '22 00:11

Cristian Libardo


thread safe is a nebulous concept. In this particular case, if you are sharing data between different requests, it is not. Otherwise by the nature of web requests it is.

like image 43
Greg Dean Avatar answered Nov 03 '22 01:11

Greg Dean