mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-02 11:06:31 +00:00
Full details: http://s.asterisk.net/dc679ec3 The previous proof-of-concept showed that the cpp_map_name_id alternate storage backed performed better than all the others so this final PR adds only that option. You still need to enable it in menuselect under the "Alternate Channel Storage Backends" category. To select which one is used at runtime, set the "channel_storage_backend" option in asterisk.conf to one of the values described in asterisk.conf.sample. The default remains "ao2_legacy". UpgradeNote: With this release, you can now select an alternate channel storage backend based on C++ Maps. Using the new backend may increase performance and reduce the chances of deadlocks on heavily loaded systems. For more information, see http://s.asterisk.net/dc679ec3
11 lines
463 B
XML
11 lines
463 B
XML
<category name="MENUSELECT_CHANNELSTORAGE" displayname="Alternate Channel Storage Backends">
|
|
<member name="channelstorage_cpp_map_name_id"
|
|
displayname="Include the C++ Map Name/ID channelstorage backend. Requires a C++11 compiler."
|
|
remove_on_change="main/channelstorage_cpp_map_name_id.oo main/channelstorage_cpp_map_name_id.ii">
|
|
>
|
|
<support_level>core</support_level>
|
|
<depend>CXX11</depend>
|
|
<defaultenabled>no</defaultenabled>
|
|
</member>
|
|
</category>
|