Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

What is syncronization in java?

Java syncronization
0
Posted

What is syncronization in java?

0

Synchronization in Java is very expensive (in terms of time), and can easily become a performance bottleneck, however it is sometimes possible to overcome such performance loss simply moving superfluous synchronization to another place. In a situation where a data structure is being iterated over continually but rarely changed, it would be far slower to synchronize MyDataStructure.getData() resulting in continual, largely unnecessary locking/unlocking, than it would be simply to synchronize the add-/remove element methods.

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123