packages feed

happs-tutorial-0.4.1: src/StateStuff.hs

module StateStuff (

  module HAppS.State

  -- If you substitute AppStateGraphBased for AppStateSetBased, 
  -- , move _local ot _local.bak (backup your serialized state)
  -- , and restart app
  -- , your datastore is now graph based
  -- User nodes can connect to each other simply using mkEdge, or whatever else from the fgl.
  -- Now you can clone facebook.
  -- Try doing that with mysql! :)

  , module AppStateSetBased -- AppStateGraphBased -- 

  , module SerializeableUsers
  , module SerializeableSessions

  ) where

import HAppS.State

import AppStateSetBased -- AppStateGraphBased -- 
import SerializeableUsers
import SerializeableSessions