module RSolr::HTTPClient::Util

def build_param(k,v)

build_param(:id, 1) == "id=1"
Example:
converts a key value pair to an escaped string:
def build_param(k,v)
  "#{escape(k)}=#{escape(v)}"
end