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

Quote:
Originally Posted by Wadabak
I have tried turning the Autocommit of at the beginning of all the data writing, then I commited the file and at the end I turned Autocommit on again.
The time that it takes is still around 2-5 seconds.
The startup usually takes up to 3 or 4 seconds, due to the fact that the sqlite database is slow at startup, which djson uses as cache. Do you mean that?


Quote:
Originally Posted by Wadabak
And I've maybe found a bug. When I registered directly after a gmx, it didn't stored all the data that I was going to save, it only saved 2 of the 7 savings to the file.

Here is my code:

pawn Код:
djAutocommit(false);
  format(str, sizeof(str), "%s/Password", player);
    djSetInt("Accounts.json", str, udb_hash(params));
    format(str, sizeof(str), "%s/Money", player);
    djSetInt("Accounts.json", str, GetPlayerMoney(playerid));
    format(str, sizeof(str), "%s/Score", player);
    djSetInt("Accounts.json", str, GetPlayerScore(playerid));
    format(str, sizeof(str), "%s/Health", player);
    GetPlayerHealth(playerid, pHealth);
    djSetFloat("Accounts.json", str, pHealth);
    GetPlayerPos(playerid, Pos[0], Pos[1], Pos[2]);
    format(str, sizeof(str), "%s/X", player);
    djSetFloat("Accounts.json", str, Pos[0]);
    format(str, sizeof(str), "%s/Y", player);
    djSetFloat("Accounts.json", str, Pos[1]);
    format(str, sizeof(str), "%s/Z", player);
    djSetFloat("Accounts.json", str, Pos[2]);
    djCommit("Accounts.json");
    djAutocommit(true);
The variables player and params have been defined already.
Can you please provide an example for that? What exactly is not saved? The issue is, that the file needs to be loaded to cache first. So, directly _set_ without _get_ before, won't work like expected. I'll make a fix for that on 1.3 release.

- 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)