Coder Social home page Coder Social logo

chris-martin / redis-glob Goto Github PK

View Code? Open in Web Editor NEW

This project forked from adetokunbo/redis-glob

0.0 2.0 0.0 39 KB

A haskell version of the glob used by redis

Home Page: https://hackage.haskell.org/package/redis-glob

License: BSD 3-Clause "New" or "Revised" License

Haskell 88.86% Nix 11.14%

redis-glob's Introduction

redis-glob

GitHub CI Stackage Nightly Hackage Hackage Dependencies BSD3

redis-glob checks that glob expressions for use with Redis are valid. Redis commands like KEYS use glob expressions to match keys in redis.

If the glob expression is invalid, the command returns an empty result, which unfortunately is the same as if the expression was valid but had no results.

Use validate to confirm if a glob expression is valid. It parses the expression in the same way as the actual redis glob implementation, returning Nothing for invalid expressions.

matches can be used to confirm that a bytestring matches a glob expression if the the glob expression is valid.

Example

{-# LANGUAGE OverloadedStrings #-}

import Redis.Glob
import qualified Data.ByteString.Lazy.Char8 as CL


isOK :: CL.ByteString -> IO ()
isOk b = do
  CL.putStrLn $ "Is " <> b <> " ok? " <> maybe "n" (const "y") (validate b)
  CL.putStrLn $ "Does it match hello? " <> if (b `matches` "hello") then "y" else "n"

main :: IO()
main = do
  isOK "h?llo"     -- Is h?llo ok? y
                   -- Does it match hello? y
  isOK "y[a-b]llo" -- Is y[a-b]llo ok? y"
                   -- Does it match hello? n
  isOK "h[a-]llo"  -- Is h[a-]llo ok? n
                   -- Does it match hello? n

redis-glob's People

Contributors

adetokunbo avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.