WindhoverLabs / juicer

5 stars 0 forks source link

Use Multivalued Inserts #11

Open lorenzo-gomez-windhover opened 3 years ago

lorenzo-gomez-windhover commented 3 years ago

Using Multivalued inserts should increase juicer's performance without sacrificing readability. Performance can become particularly hindering to one's workflow especially when using tools like auto-yamcs which can take minutes when using juicer to parse large code bases such as airliner.

This is something that needs to be further investigated nonetheless.

lorenzo-gomez-windhover commented 3 years ago

NOTE: One of the things that has prevented me from implementing this has been the fact that I need to save the id each symbol after it has been written to the database and I've realized that I think saving these off into a std::map<int,std::string> will solve this issue.