Persistent Values

Discussion in 'Plugin Development' started by zachoooo, Nov 8, 2012.

Thread Status:
Not open for further replies.
  1. Offline

    zachoooo

    I have a List<String> that I want to stay consistent when bukkit starts up and shutsdown, etc. Are there any easy alternatives to yaml/mysql/sqllite? I heard about something called persistence but I can't seem to find anything informative on it.
     
  2. Offline

    Sheepii

    All things that aren't physically saved to a file are saved to memory. When a server shuts down, it shuts down all async methods that are tied to bukkit. Creating plugins out of bukkit in compared to creating a file is completely different and complicated. It would be easier to create a file. What exactly are you trying to do?
     
  3. Offline

    zachoooo

    Save a list of player names to be used later.
     
  4. Offline

    Sheepii

    Why not just save it to a yml? It's really not that hard. Want to know how?
     
  5. Offline

    zachoooo

    I already know how, I guess ill just do that
     
Thread Status:
Not open for further replies.

Share This Page