I am thinking about using Node.js for next project. But I stuck at some point related to thread safety concept. How these issues are addressed(or need to take care) while implementing in Node.js ?
I know JavaScript supports functional programming and this paradigm will address thread-safety. What are best practices to be followed here.
Thanks
node.jsyour code is always single threaded and hence you need not to worry about thread synchronization problems. All you need to worry is to deal with asyc calls.