So I was searching for the save file in a dump of Blender (a 3d modelling software, but that's unrelated to my question)'s memory since it wouldn't save for some reason. Then I opened up the dump in lldb
, and searched for the header that I got from a xxd
dump of existing save file:
00000000: 424C 454E 4445 522D 7632 3832 5245 4E44 BLENDER-v282REND
00000010: 4800 0000 D00A 63E6 FE7F 0000 0000 0000 H.....c.........
00000020: 0100 0000 0100 0000 7800 0000 5363 656E ........x...Scen
00000030: 6500 e.
Which got me thinking: would search algorithms perform better if say for example I searched for BLENDER
or would it be more efficient if I searched for BLENDER-v282RENDH
? I'm not just talking about lldb
's search algorithm, I know there are many different ones, and I'm asking in general if more or less keywords would be easier for the computer to handle. I hope this question's fairly easy to answer, and sorry if this is just a stupid question. Thanks in advance!