digitalmars.D - Collection, why COW collection are important
- deadalnix (6/6) Oct 31 2015 The hack team recently released project to add COW collection to
- Sebastiaan Koppe (4/10) Oct 31 2015 I found the first comment at the link to be a better explanation
- Gary Willoughby (2/8) Nov 01 2015 What does COW mean here?
- Ola Fosheim =?UTF-8?B?R3LDuHN0YWQ=?= (5/6) Nov 01 2015 Copy-On-Write. You can use it with shared ref counting and
The hack team recently released project to add COW collection to hack in addition to current, reference type, collections. You can find explanation here : http://hhvm.com/blog/10649/improving-arrays-in-hack As collection are discussed here, I think this is relevant, especially the explanations as of why COW matters.
Oct 31 2015
On Saturday, 31 October 2015 at 23:02:12 UTC, deadalnix wrote:The hack team recently released project to add COW collection to hack in addition to current, reference type, collections. You can find explanation here : http://hhvm.com/blog/10649/improving-arrays-in-hack As collection are discussed here, I think this is relevant, especially the explanations as of why COW matters.I found the first comment at the link to be a better explanation of why immutable containers matter than the article's explanation why COW matters.
Oct 31 2015
On Saturday, 31 October 2015 at 23:02:12 UTC, deadalnix wrote:The hack team recently released project to add COW collection to hack in addition to current, reference type, collections. You can find explanation here : http://hhvm.com/blog/10649/improving-arrays-in-hack As collection are discussed here, I think this is relevant, especially the explanations as of why COW matters.What does COW mean here?
Nov 01 2015
On Sunday, 1 November 2015 at 13:43:25 UTC, Gary Willoughby wrote:What does COW mean here?Copy-On-Write. You can use it with shared ref counting and immutable for filling out templates, transactional computations and other situations where you want to create a new version of something without affecting the original immediately.
Nov 01 2015