Attached Particle Spawners and associated questions

I was thinking of implementing attached particle spawners (https://github.com/minetest/minetest/issues/567), and had a few questions.
- Which parts of the code would I need to change to extend an existing server -> client message (add particle spawner)?
- Are the ids for corresponding CAOs and SAOs equal?
- I am planning on having SAOs have a std::set of the ids of the particle spawners that are attached to them, so that they can be removed when they are unloaded. Is this a good idea?