dresden-elektronik / deconz-rest-plugin

deCONZ REST-API plugin to control ZigBee devices
BSD 3-Clause "New" or "Revised" License
1.9k stars 503 forks source link

Refactor string cache to use atom table #7723

Closed manup closed 6 months ago

manup commented 6 months ago

The atom table only holds at most one copy of any string. Each atom has a 32-bit handle. E.g. 100 lights with same manufacturer name point to the same atom.

This also makes comparisons very fast since only integers are compared.