Posts: 850
Threads: 29
Joined: Sep 2014
Reputation:
0
Why does the speed of command processor and database manager matter? I mean everything happens in a second, right?
What happens if I use dini instead of y_ini and strcmp instead of zcmd?
Is dcmd a good command processor?
Posts: 1,773
Threads: 47
Joined: Jan 2015
Reputation:
0
Speed matters when there is bulk of subjects.
If you use DINI instead of YINI for Loading objects(say) for a player, YINI is faster so the loading is completed before DINI does it in lots of seconds. What would you want, wait for long to let DINI complete or YINI?
Similarly with zcmd and strcmp.
Also, optimizations and smart methods are part of good coding practice or quality code. DINI is not smart because it opens a file each time to read a single field and then closes it, where you can do that a single time by opening it once and then close after you have fetched or written your fields.
Posts: 850
Threads: 29
Joined: Sep 2014
Reputation:
0
Means it takes more than a second for dini to load?
I thought all these processes everything within a second.
Posts: 850
Threads: 29
Joined: Sep 2014
Reputation:
0
Ahh, okay. Thanks.
But now I'm using dcmd. How much slower is that than zcmd?