node-solr-lambda

所属分类:搜索引擎
开发工具:JavaScript
文件大小:0KB
下载次数:0
上传日期:2023-07-18 22:07:11
上 传 者sh-1993
说明:  以函数编程风格编写的极简Solr客户端,
(Minimalistic Solr client written in functional programming style,)

文件列表:
.eslintrc (137, 2023-06-27)
CHANGELOG.md (5600, 2023-06-27)
package.json (1144, 2023-06-27)
src/ (0, 2023-06-27)
src/index.js (5178, 2023-06-27)
src/types.d.ts (15191, 2023-06-27)
src/utils.js (1189, 2023-06-27)
test/ (0, 2023-06-27)
test/docker-compose.yml (240, 2023-06-27)
test/solr.test.js (1663, 2023-06-27)
yarn.lock (125699, 2023-06-27)

# node-solr-lambda [![Conventional Commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg)](https://conventionalcommits.org) ## Features - functional-style API with jsdoc type annotations - plain javascipt in commonjs format - no additional build step required - ES6+ including async/await, lambdas, spread operator... - typechecking support in vscode (without compiling typescript code) - no runtime dependencies other than `axios` - as close as possible to the Solr Json-based REST API - functions for working with documents, fields, field types, cores ## Example ```js const { prepareSolrClient } = require("node-solr-lambda"); const solr = prepareSolrClient("mycore"); async function myfun() { const result = await solr.query({ query: "label:something" }); console.log(result); await solr.addField({ name: "price", type: "plong", multiValued: false }); await solr.addField({ name: "category", type: "string", multiValued: true, docValues: true }); const item1 = { id: "item1", price: 123, category: ["cpu", "ram"] }; const item2 = { id: "item2", price: 456, category: ["cpu", "usb"] }; await solr.add(item1); // works with single object await solr.add([item1, item2]); // works with object[] await solr.commit() await solr.query({ query: "*:*", facet: { top_5_categories: { terms: { field: "category", limit: 5, facet: { avg_price: "avg(price)" } } } } }); } ``` ## How to test We provide a docker-compose with a solr instance for testing. The testing solr instance needs to run first: ```sh # run this in a separate terminal and shutdown using CTRL+C yarn test:prepare ``` Now you can run the test suite: ```sh yarn test ```

近期下载者

相关文件


收藏者