close
The Wayback Machine - https://web.archive.org/web/20201020124125/https://github.com/dj2/query_string_parser
Skip to content
main
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
ext
 
 
lib
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README

Query String Parser
===================

We parse a lot of queries at PostRank Inc. The time taken to parse those queries starts to add up.
Eventually we got to the point where we decided to create a simple C based parser. Hence, QueryStringParser.

A more detailed explanation of the origins can be found at: http://everburning.com/news/introducing-querystringparser

Usage is pretty simple, you can either call the function against the QueryStringParser module, or include
the module into your code. There is only one method, qs_parse.

  require 'query_string_parser'
  QueryStringParser.qs_parse("my=query&string=parser")
  => {"my"=>"query", "string"=>"parser"}

  include QueryStringParser
  qs_parse("does[]=array&does[]=data&does[3]=values&does=more")
  => {"does"=>["array", "data", "values", "more"]}


Questions, comments, drop me a line. dj2 at everburning dot com

About

A simple query string parser

Resources

License

Releases

No releases published

Packages

No packages published
You can’t perform that action at this time.