[Include] DJson 1.6.2 - Fast/Extensive File Reader/Writer (Official DiniІ) (Works in FS)
#17

Quote:
Originally Posted by Wadabak
I've did this:
1) Registered my self, it was writen correctly.
2) Changed my name in the file and saved it.
3) Reregistered myself.

But as the changed name of the file hasn't been reloaded in the cache the system didn't knew it and overwrited the previous one.
So, if you want to do that, better make it different :-P. Changing names is always hard, if you save the data on that name.

If you want to reload the info, better use DJSON_cache_ReloadFile(filename[]) once or use for example dj(file[],path[],use_cached_value) with use_cached_value = false, this will "force" to load from file always. No caching is used here. Even though I do not suggest that for big files.

Quote:
Originally Posted by Wadabak
A question: Is the long delay normal, like ~1-2 seconds with 8 writings?

This is not a problem because I am going to use this only in register/login/disconnect so the player won't notice it during his gameplay.
So here comes the reason, why you should use djAutocommit and djCommit!

In first place do:
pawn Код:
djAutocommit(false); // after that line, it will only flush the data on djCommit
djSetInt("Accounts.json", "Draco/Health",100);
djSetInt("Accounts.json", "Draco/Money",10000);
... more ...
djSetInt("Accounts.json", "Wadabak/Health",30);
djSetInt("Accounts.json", "Wadabak/Money",500);
djCommit("Accounts.json"); // at this point, it will "flush" all the data into the file!
djAutocommit(true); // after that line, it will automactily flush the data on each call
This is way way faster :). Just for your information, if you do djInt("Accounts.json","Draco/Health") while not having commited the data yet, it will show the current value anyways. This is very helpful if you just want to write some data into the cache and are not sure if you want to keep it :).

Quote:
Originally Posted by Wadabak
Also if you don't mind, can I release the register system I am making? Because this may be confusing for new users.
Of course.

- Draco
Reply


Messages In This Thread
DJson 1.6.2 - Fast/Extensive File Reader/Writer (Official DiniІ) (Works in FS) - by DracoBlue - 25.08.2008, 12:21
Re: DJson 1.0 - Fast/Extensive File Reader/Writer (Official DiniІ) - by Antironix - 25.08.2008, 12:30
Re: DJson 1.0 - Fast/Extensive File Reader/Writer (Official DiniІ) - by Xalphox - 25.08.2008, 12:37
Re: DJson 1.0 - Fast/Extensive File Reader/Writer (Official DiniІ) - by MaTrIx4057 - 25.08.2008, 13:12
Re: DJson 1.0 - Fast/Extensive File Reader/Writer (Official DiniІ) - by Eyzi - 25.08.2008, 13:21
Re: DJson 1.0 - Fast/Extensive File Reader/Writer (Official DiniІ) - by Ycto - 25.08.2008, 13:39
Re: DJson 1.0 - Fast/Extensive File Reader/Writer (Official DiniІ) - by DracoBlue - 25.08.2008, 18:24
Re: DJson 1.2 - Fast/Extensive File Reader/Writer (Official DiniІ) - by Antironix - 26.08.2008, 11:15
Re: DJson 1.2 - Fast/Extensive File Reader/Writer (Official DiniІ) - by DracoBlue - 26.08.2008, 12:23
Re: DJson 1.2 - Fast/Extensive File Reader/Writer (Official DiniІ) - by Antironix - 26.08.2008, 12:34
Re: DJson 1.2 - Fast/Extensive File Reader/Writer (Official DiniІ) - by MadCat - 26.08.2008, 15:29
Re: DJson 1.2 - Fast/Extensive File Reader/Writer (Official DiniІ) - by luxeon - 26.08.2008, 15:35
Re: DJson 1.2 - Fast/Extensive File Reader/Writer (Official DiniІ) - by Antironix - 27.08.2008, 17:06
Re: DJson 1.2 - Fast/Extensive File Reader/Writer (Official DiniІ) - by DracoBlue - 27.08.2008, 17:15
Re: DJson 1.2 - Fast/Extensive File Reader/Writer (Official DiniІ) - by Antironix - 27.08.2008, 17:30
Re: DJson 1.2 - Fast/Extensive File Reader/Writer (Official DiniІ) - by Grove - 27.08.2008, 17:32
Re: DJson 1.2 - Fast/Extensive File Reader/Writer (Official DiniІ) - by DracoBlue - 27.08.2008, 17:37
Re: DJson 1.2 - Fast/Extensive File Reader/Writer (Official DiniІ) - by Nero_3D - 28.08.2008, 22:27
Re: DJson 1.2 - Fast/Extensive File Reader/Writer (Official DiniІ) - by DracoBlue - 28.08.2008, 22:38
Re: DJson 1.2 - Fast/Extensive File Reader/Writer (Official DiniІ) - by JaTochNietDan - 29.08.2008, 03:21
Re: DJson 1.2 - Fast/Extensive File Reader/Writer (Official DiniІ) - by sebihunter - 29.08.2008, 14:31
Re: DJson 1.2 - Fast/Extensive File Reader/Writer (Official DiniІ) - by Antironix - 29.08.2008, 15:32
Re: DJson 1.2 - Fast/Extensive File Reader/Writer (Official DiniІ) - by DracoBlue - 29.08.2008, 16:49
Re: DJson 1.2 - Fast/Extensive File Reader/Writer (Official DiniІ) - by Antironix - 29.08.2008, 18:21
Re: DJson 1.3 - Fast/Extensive File Reader/Writer (Official DiniІ) - by DracoBlue - 31.08.2008, 16:55
Re: DJson 1.3 - Fast/Extensive File Reader/Writer (Official DiniІ) - by Antironix - 31.08.2008, 17:03
Re: DJson 1.5.2 - Fast/Extensive File Reader/Writer (Official DiniІ) (Number fix!!!) - by Dinero - 27.01.2009, 06:14
Re: DJson 1.5.2 - Fast/Extensive File Reader/Writer (Official DiniІ) (Number fix!!!) - by jwload - 30.01.2009, 19:25
Re: DJson 1.5.2 - Fast/Extensive File Reader/Writer (Official DiniІ) (Number fix!!!) - by DracoBlue - 31.01.2009, 09:37
Re: DJson 1.5.2 - Fast/Extensive File Reader/Writer (Official DiniІ) (Number fix!!!) - by Cezar - 31.01.2009, 11:10
Re: DJson 1.5.2 - Fast/Extensive File Reader/Writer (Official DiniІ) (Number fix!!!) - by DracoBlue - 31.01.2009, 11:21
Re: DJson 1.5.2 - Fast/Extensive File Reader/Writer (Official DiniІ) (Number fix!!!) - by jwload - 31.01.2009, 16:49
Re: DJson 1.5.2 - Fast/Extensive File Reader/Writer (Official DiniІ) (Number fix!!!) - by DracoBlue - 01.02.2009, 21:02
Re: DJson 1.5.2 - Fast/Extensive File Reader/Writer (Official DiniІ) (Number fix!!!) - by jwload - 02.02.2009, 14:26
Re: DJson 1.5.2 - Fast/Extensive File Reader/Writer (Official DiniІ) (Number fix!!!) - by pen_theGun - 12.02.2009, 21:30
Re: DJson 1.5.2 - Fast/Extensive File Reader/Writer (Official DiniІ) (Number fix!!!) - by DracoBlue - 12.02.2009, 21:37
Re: DJson 1.6.2 - Fast/Extensive File Reader/Writer (Official DiniІ) (Works in FS) - by iggy1 - 02.11.2010, 08:42
Re: DJson 1.6.2 - Fast/Extensive File Reader/Writer (Official DiniІ) (Works in FS) - by The_Moddler - 02.11.2010, 09:38
Re: DJson 1.6.2 - Fast/Extensive File Reader/Writer (Official DiniІ) (Works in FS) - by iggy1 - 02.11.2010, 09:51
Re: DJson 1.6.2 - Fast/Extensive File Reader/Writer (Official DiniІ) (Works in FS) - by The_Moddler - 11.11.2010, 23:40
Re: DJson 1.6.2 - Fast/Extensive File Reader/Writer (Official DiniІ) (Works in FS) - by Yaa - 11.12.2016, 14:32

Forum Jump:


Users browsing this thread: 1 Guest(s)