Popularity
1.5
Declining
Activity
0.0
Stable
2
1
1
Monthly Downloads: 3
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags:
Database
Persistent
Latest version: v0.1.0.0
persistent-generic alternatives and similar packages
Based on the "persistent" category.
Alternatively, view persistent-generic alternatives based on common mentions on social networks and blogs.
-
persistent-redis
Persistence interface for Haskell allowing multiple storage methods. -
persistent-database-url
Parse DATABASE_URL into configuration types for Persistent -
persistent-odbc
uses persistent connecting via hdbc odbc -
persistent-relational-record
Persistent adapter for Haskell Relational Record -
persistent-pagination
Efficient and correct pagination! -
persistent-mtl
Monad transformers for the persistent library -
persistent-mysql-haskell
Persistence interface for Haskell allowing multiple storage methods. -
persistent-spatial
Spatially indexed type for storing ceigraphic coordinates. -
persistent-protobuf
a Template-Haskell routine to ease integration between Persistent and protobufs -
persistent-template-classy
Generate classy lens field accessors for persistent models -
persistent-zookeeper
Persistence interface for Haskell allowing multiple storage methods.
Access the most powerful time series database as a service
Ingest, store, & analyze all types of time series data in a fully-managed, purpose-built database. Keep data forever with low-cost storage and superior data compression.
Promo
www.influxdata.com
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of persistent-generic or a related project?
README
persistent-generic
Generic facilities for working with Persistent
classes.
{-# language DeriveGeneric #-}
module Main where
import Database.Persist.Generic
data StopLight = Red | Yellow | Green
deriving (Show, Eq, Generic)
instance PersistField StopLight where
toPersistValue = genericToPersistValue
fromPersistValue = genericFromPersistValue
Limitations
- Only
PersistField
is currently supported.