Skip to content

Instantly share code, notes, and snippets.

@nz
nz / gist:1132809
Created August 8, 2011 21:30
Sunspot - Retry search on partialResults
# Sample code using Sunspot 1.2.1 to retry a search when partialResults=true
#
# I hope this code will be somewhat deprecated in Sunspot 1.2.2, since we have to
# use instance_eval to access the otherwise inaccessible @solr_response instance variable.
#
class Post
# ...
@teknoraver
teknoraver / unixhttpc.go
Last active March 21, 2024 11:48
HTTP over Unix domain sockets in golang
package main
import (
"context"
"flag"
"fmt"
"io"
"net"
"net/http"
"os"