feat(pfcp): removing dependency to folly
Issue #10 (closed) --> Getting Rid of folly
Tagging also @arora and @kharade
After discussion w/ Lionel and Rohan, the advantages of using folly::AtomicHashMap
are:
- nolock atomicity
- size restriction
For the size restriction, I've added size checks when inserting. BTW what is the current behavior when we insert too many?
For atomicity, do we need to add mutex?
This is a proposal. We can use another library.