Vice City: Multiplayer

Server Development => Scripting and Server Management => Topic started by: Mötley on Aug 16, 2016, 12:12 AM

Title: Prossesing 40 data saves for a players account
Post by: Mötley on Aug 16, 2016, 12:12 AM
Okay topic says it all, I have went a little over board on a server within the last 14 hrs and I am a little stumped on how to save the data.



I would like to port the first server somewhere in September.

If someone could help me in some logic of what I should do that would be amazing, I intended to use sq-lite
"Was using sq-lite :P but theres to much data to process into the accounts, so in other terms I kept scripting".
Title: Re: Prossesing 40 data saves for a players account
Post by: Thijn on Aug 16, 2016, 05:44 AM
So, what do you need help with?
Title: Re: Prossesing 40 data saves for a players account
Post by: KAKAN on Aug 16, 2016, 06:16 AM
Quote from: Thijn on Aug 16, 2016, 05:44 AMSo, what do you need help with?
that's what I thought.
I think he needs help with "When shall I save the player's stats? While the player leaves or using an timer?"
Title: Re: Prossesing 40 data saves for a players account
Post by: Xmair on Aug 16, 2016, 09:16 AM
Save them when a player quits, but saving them with a timer is not a bad idea.
Title: Re: Prossesing 40 data saves for a players account
Post by: Mötley on Aug 16, 2016, 11:40 AM
What I need help with is how should I even save all of this data. I'm not that great with sq-lite and or never really adventured to having this much data to save to a sq-lite table. With that I really do not think it sounds professional to save all of this data to on table.
Title: Re: Prossesing 40 data saves for a players account
Post by: DizzasTeR on Aug 16, 2016, 12:47 PM
Here's the big deal, using a class won't hurt you. Just try to avoid getting data again and again from file ( sqlite db or whatever you're using )

Then comes the saving part, again it doesn't matter, just save all of these statistics once for each player when he leaves.
Title: Re: Prossesing 40 data saves for a players account
Post by: Mötley on Aug 16, 2016, 12:56 PM
But is it normal to save all of this to one table? I'm actually using arrays xD, no class.
A class is nothing but a fancy class defined in squirrel.
I know everything about accounting but all of this plus passwords and much more to one table? I might have 80 to near 100 by September that I need to save and something tells me I should have more than one table, maybe I am wrong and that's why I need guidance @Doom_Kill3R
Title: Re: Prossesing 40 data saves for a players account
Post by: DizzasTeR on Aug 16, 2016, 12:59 PM
Quote from: Mötley on Aug 16, 2016, 12:56 PMA class is nothing but a fancy class defined in squirrel.

Lies, lies, lies! Its a powerful thing, use it accordingly. Make a proper class with member vars to hold all of those statistics for your player specifically, also create a member save function which you can call every time a player leaves, which saves all that information no matter if its 40 or 100.
Title: Re: Prossesing 40 data saves for a players account
Post by: Mötley on Aug 16, 2016, 01:03 PM
sq-lite in vcmp can handle that many saves to one table?

Either way I prefer arrays :) just a personal preference. It's just clearing all of them ;D
Title: Re: Prossesing 40 data saves for a players account
Post by: KAKAN on Aug 16, 2016, 01:12 PM
Quote from: Mötley on Aug 16, 2016, 01:03 PMsq-lite in vcmp can handle that many saves to one table?
Yep, it can. There's a nice topic which gave some benchmarks on it. It's on the tutorial section.

Quote from: Mötley on Aug 16, 2016, 01:03 PMEither way I prefer arrays :) just a personal preference. It's just clearing all of them ;D
Then there will be many arrays in the global root table. Then your system will slow down.
:edit: Here's the link to the benchmarks: http://forum.vc-mp.org/?topic=444.msg2964#msg2964
Title: Re: Prossesing 40 data saves for a players account
Post by: aXXo on Aug 16, 2016, 08:46 PM
Splitting data into different tables would be better for your own sanity. Horizontal scrolling is the work of the devil.
Title: Re: Prossesing 40 data saves for a players account
Post by: Mötley on Aug 16, 2016, 09:46 PM
It's just a preference, That I prefer working with, I use methods that I prefer as I want a source that's super easy to update.
Player.WantedLevel = Wanted[ Player.ID ]; Level[ Player.ID ]Compared to
Player.WantedLevel = Class[ Player.ID ].WantedClass[ Player.ID ].Level


I will consider using more than one table.
Many other reasons like ban-list, To even just passwords.

To possibly being capable of uploading stats.
Title: Re: Prossesing 40 data saves for a players account
Post by: Mötley on Aug 17, 2016, 11:51 PM
Well after a lot of decisions I thought It would be in my best interest to 'Stay Away' from sq-lite at this time as I am growing way to much '50++ values now' in this server, and to use sq-lite for some fancy browser is a little outrageous.

Sq_lite will come one day, but for all I am concerned sq lite is nothing but a fancy browser, and in squirrel we get a fancy plugin to view players data in a browser rather than on file. with the ability to upload stats for others to eye fuck other peoples accounts, nothing more, nothing less, So I will attempt to allow others to do this to other players accounts, just not at this time.

Reverting back to methods I used way long ago ;)
Title: Re: Prossesing 40 data saves for a players account
Post by: DizzasTeR on Aug 18, 2016, 04:00 AM
You still can't deny the fact that SQ Lite is alot more better than INIs, atleast in VCMP's environment.
Title: Re: Prossesing 40 data saves for a players account
Post by: Mötley on Aug 18, 2016, 04:56 AM
No difference. I have worked with ini a lot in the past as well ugly hashing.

With saying that ini has the simplest architecture to work with. Works as good as sqlite 'as long as you know what your doing'.

Ini you don't have to deal with the hassle that sq lite has. Ini is super light weight. Yet easy to play with when using arrays. Personally I recommend ini over sq lite when building a server.

I have someone that I might re-hire to upgrade the system in a year to sq lite as I don't have time to fool with it. There's way to much scripting I have to do.

If sq lite was hassle free I would recommend it.

I'm now at 60 values that needs to be saved to an account. The values and script is getting big "10,549 script lines" weapons have been removed due to too many freaking values.


If there was an xml plugin I would probably $hi! my pants you know how much fun an xml account system would be?

I'm not hating on sq lite I'm sure it sure does sound like it, I just do not have the time for it, I'm sure others could agree when you have a massive script thats in a alpha stage,.
Title: Re: Prossesing 40 data saves for a players account
Post by: KAKAN on Aug 18, 2016, 05:42 AM
Well, do some benchmarks. INI is a lot slower( in everything! ) than SQLite.
Still then, for VCMP, it won't affect much as not many players will join your server :p
Title: Re: Prossesing 40 data saves for a players account
Post by: Thijn on Aug 18, 2016, 05:52 AM
You're probably forgetting the flexible method of getting your data out of sqlite. You can query almost anything you want with just accessing the file once, which while running the server is probably already in memory.

INIs are horribly inefficient and I wouldn't recommend anyone to use them for their "big new server". Especially when you're creating one from scratch.
Title: Re: Prossesing 40 data saves for a players account
Post by: KAKAN on Aug 18, 2016, 06:09 AM
Quote from: Thijn on Aug 18, 2016, 05:52 AMYou're probably forgetting the flexible method of getting your data out of sqlite. You can query almost anything you want with just accessing the file once, which while running the server is probably already in memory.
INIs can also be loaded into memory. Take @. 's plugin for example :p
Title: Re: Prossesing 40 data saves for a players account
Post by: DizzasTeR on Aug 18, 2016, 08:54 AM
MySQL > SQ Lite > INI > Hash

This is how I see VCMP in regard of saving data, even though something like MySQL is still too much for a small thing like VCMP, it stands tall.

If you want to make something better then make your way through things unfamiliar to you because anything achieved easily and your-friendly isn't the best outcome
Title: Re: Prossesing 40 data saves for a players account
Post by: KAKAN on Aug 18, 2016, 09:14 AM
I'll prefer SQLite even though I was using MySQL.
The installtion of MySQL requires more than 100MBs of space on your hard disk, while SQLite doesn't need. Something like VCMP doesn't need the core features of a SQL-based database( unless you plan to make a good server ).
Even though SQLite is SQL based, it doesn't have all the features, which makes it light and good for small projects. But, if you're planning to have UCP, Webstats etc, MySQL is the way for you.
Title: Re: Prossesing 40 data saves for a players account
Post by: EK.IceFlake on Aug 18, 2016, 11:02 AM
Friend, throw anything at SQLite and it will catch it easily (well you better not use sqlite for a very big website, but for vcmp its very good)
Sqlite has a very nice index which will help you in increasing your performance. If you need hardcore performance (either you need to do millions of records a second or every millisecond matters) you should use MySQL. However, for something even remotely related with VCMP, I recommend sqlite, unless you like to be a performance-mania like @.
Title: Re: Prossesing 40 data saves for a players account
Post by: . on Aug 18, 2016, 11:27 AM
Quote from: EK.CrystalBlue on Aug 18, 2016, 11:02 AMI recommend sqlite, unless you like to be a performance-mania like @.

On the contrary. I prefer SQLite. I prefer small code without a lot of dependencies. In fact, even in my plugin, SQLite is the most complete module.
Title: Re: Prossesing 40 data saves for a players account
Post by: Mötley on Aug 19, 2016, 03:31 AM
Perhaps, In later times I will take the time to do this, "Motley needs to re-read http://www.tizag.com/sqlTutorial/index.php for a better prep".