Socket
Socket
Sign inDemoInstall

github.com/droxer/gosolr

Package Overview
Dependencies
Alerts
File Explorer
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github.com/droxer/gosolr


Version published
Created
Source

gosolr GoDoc

Build Status

Apache Solr client implementation by go.

This is draft implementation for now. Contribute is more than welcome.

Example Usage

package main

import (
  "fmt"
  "github.com/droxer/gosolr"
  "log"
  "time"
)

func main() {
  solr := gosolr.New("http://localhost:8983/solr/collection1", time.Second*5)

  var doc = &gosolr.Document{
    Doc: map[string]interface{}{
      "documentid":  118523475,
      "audiences":   []string{"gosolr"},
      "collapse_id": 8888,
    },
  }

  resp, _ := solr.Add(doc, true, false)

  log.Print(fmt.Sprintf("Status: %v", resp.Header.Status))
}


License

Copyright 2014

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

FAQs

Package last updated on 30 Sep 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc