├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── Setup.hs ├── Vagrantfile ├── benchmarks └── Main.hs ├── developer_notes.md ├── flamecharts └── baseline.svg ├── package.yaml ├── s └── test-time ├── src └── Database │ └── PostgreSQL │ └── Simple │ ├── Queue.hs │ └── Queue │ └── Migrate.hs ├── stack.yaml ├── stack.yaml.lock └── test ├── Database └── PostgreSQL │ └── Simple │ └── QueueSpec.hs └── Spec.hs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfischoff/postgresql-queue/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfischoff/postgresql-queue/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfischoff/postgresql-queue/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfischoff/postgresql-queue/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfischoff/postgresql-queue/HEAD/Vagrantfile -------------------------------------------------------------------------------- /benchmarks/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfischoff/postgresql-queue/HEAD/benchmarks/Main.hs -------------------------------------------------------------------------------- /developer_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfischoff/postgresql-queue/HEAD/developer_notes.md -------------------------------------------------------------------------------- /flamecharts/baseline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfischoff/postgresql-queue/HEAD/flamecharts/baseline.svg -------------------------------------------------------------------------------- /package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfischoff/postgresql-queue/HEAD/package.yaml -------------------------------------------------------------------------------- /s/test-time: -------------------------------------------------------------------------------- 1 | stack test 2>&1 | grep Fini 2 | -------------------------------------------------------------------------------- /src/Database/PostgreSQL/Simple/Queue.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfischoff/postgresql-queue/HEAD/src/Database/PostgreSQL/Simple/Queue.hs -------------------------------------------------------------------------------- /src/Database/PostgreSQL/Simple/Queue/Migrate.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfischoff/postgresql-queue/HEAD/src/Database/PostgreSQL/Simple/Queue/Migrate.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfischoff/postgresql-queue/HEAD/stack.yaml -------------------------------------------------------------------------------- /stack.yaml.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfischoff/postgresql-queue/HEAD/stack.yaml.lock -------------------------------------------------------------------------------- /test/Database/PostgreSQL/Simple/QueueSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfischoff/postgresql-queue/HEAD/test/Database/PostgreSQL/Simple/QueueSpec.hs -------------------------------------------------------------------------------- /test/Spec.hs: -------------------------------------------------------------------------------- 1 | {-# OPTIONS_GHC -F -pgmF hspec-discover #-} --------------------------------------------------------------------------------