The Symbolic driver is slower than the Built-In.
HOWEVER, it is "faster" to be smart and use both. Built-In for all the basic blocks (C, V, D, R, X, Y, SS, SL, CT, T, ...). But if you need access to structure members like Stages, PID, Drum, User Data Types, heap-items, even user data-blocks of simple types (e.g. your own Alarm block of bits), you have to use the Symbolic driver for those.
Before the Symbolic driver, you had to move any of your non-Built-in values into/out of the Built-In areas every PLC scan (e.g. PID .PV and .SP into/out of R). But with the Symbolic driver, skip all that and just use MyPID.PV generated by Do-more's "Struct Fields" export, and import that into C-more project, and now you can use that tag in your C-more project.