mirror of
https://github.com/Expand-sys/CCash
synced 2025-12-16 16:12:14 +11:00
Update FAQ.md
This commit is contained in:
parent
d71d74678e
commit
e8576b76f8
1 changed files with 17 additions and 3 deletions
20
docs/FAQ.md
20
docs/FAQ.md
|
|
@ -3,6 +3,7 @@
|
||||||
#### Q : How do I setup a CCash instance
|
#### Q : How do I setup a CCash instance
|
||||||
#### A : You can with [build docs](https://github.com/EntireTwix/CCash/blob/main/docs/building.md) you can build from source or use the Docker package.
|
#### A : You can with [build docs](https://github.com/EntireTwix/CCash/blob/main/docs/building.md) you can build from source or use the Docker package.
|
||||||
|
|
||||||
|
|
||||||
#### Q : Why is my username invalid
|
#### Q : Why is my username invalid
|
||||||
#### A : Usernames are restricted by minecraft's requirements
|
#### A : Usernames are restricted by minecraft's requirements
|
||||||
* lowercase letters
|
* lowercase letters
|
||||||
|
|
@ -10,14 +11,27 @@
|
||||||
* _
|
* _
|
||||||
* Length must be atleast 3 and at most 16 characters.
|
* Length must be atleast 3 and at most 16 characters.
|
||||||
|
|
||||||
|
|
||||||
#### Q : Is this a crypto like krist?
|
#### Q : Is this a crypto like krist?
|
||||||
#### A : CCash isn't a crypto, the economy you decide to implement is entirely up to you.
|
#### A : CCash isn't a crypto, the economy you decide to implement is entirely up to you.
|
||||||
|
|
||||||
|
|
||||||
|
#### Q : Why isnt this on a database?
|
||||||
|
#### A : Because this usecase requires none of the features a database would offer.
|
||||||
|
|
||||||
|
|
||||||
|
#### Q : People are making too many accounts/transactions maliciously to fill up space on my server!
|
||||||
|
#### A : Consider disabling `ADD_USER_OPEN` in the [build proccess](https://github.com/EntireTwix/CCash/blob/main/docs/building.md).
|
||||||
|
|
||||||
|
|
||||||
#### Q : My instance is taking up too much RAM
|
#### Q : My instance is taking up too much RAM
|
||||||
#### A : If your memory usage is too high I would reduce log size.
|
#### A : If your memory usage is too high I would reduce log size.
|
||||||
|
|
||||||
#### Q : My instance is slow
|
|
||||||
#### A : Toggling off logs will increase performance. On some devices multi threading increases performance, on others the overhead isn't worth the benefit. If when the frequency of saving arrives its highly likely changes have occurred (say by high activity or low save frequency) then disabling conservative saving will marginally increase performance.
|
|
||||||
|
|
||||||
#### Q : My instance is taking up too much disk spac
|
#### Q : My instance is taking up too much disk spac
|
||||||
#### A : Use the purge users endpoint to delete old or superfluous accounts or reducing log size will reduce disk space.
|
#### A : Use the purge users endpoint to delete old or superfluous accounts or reducing log size will reduce disk space but should be a last resort.
|
||||||
|
|
||||||
|
|
||||||
|
#### Q : My instance is slow
|
||||||
|
#### A : Toggling off logs will increase performance. On some devices multi threading increases performance, on others the overhead isn't worth the benefit.
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue