forked from franzinc/solr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.lisp
31 lines (29 loc) · 947 Bytes
/
package.lisp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
;; -*- mode: common-lisp -*-
;; copyright (c) 2011-2016 Franz Inc, Oakland, CA - All rights reserved.
;; This program and the accompanying materials are made available under the
;; terms of the Eclipse Public License v1.0 which accompanies this
;; distribution (see license.txt), and is available at
;; http://www.eclipse.org/legal/epl-v10.html
(eval-when (:compile-toplevel :load-toplevel :execute)
(require :aserve)
(require :datetime)
(require :net-xml-generator))
(defpackage :solr
(:use :cl :excl
:util.date-time
:net.aserve.client
:net.xml.generator
:net.xml.parser)
(:export :solr
:solr-error
:solr-add
:solr-add*
:solr-commit
:solr-optimize
:solr-rollback
:solr-delete
:solr-query
:solr-result->response-count
:solr-result->doc-nodes
:solr-result->doc-alist
))