New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

azure-search-emulator-js

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

azure-search-emulator-js - npm Package Compare versions

Comparing version 0.6.0 to 0.6.1

services/middlewares/transformer/uniq.d.ts

2

package.json
{
"name": "azure-search-emulator-js",
"version": "0.6.0",
"version": "0.6.1",
"description": "An unofficial javascript emulator for the Azure Cognitive Search API.",

@@ -5,0 +5,0 @@ "author": {

@@ -270,13 +270,13 @@ # azure-search-emulator-js

describe SearchEngine
bench large query (2_500 documents)
=> total: 2647.13ms | samples/runs: 91/100 | ops/sec: 37.78 ±4.33ms @ 3σ
mean: 26.47ms | mode: 26ms | min: 22.21ms/22.21ms | max: 30.86ms/43.1ms
bench large query
=> total: 2484.45ms | samples/runs: 89/100 | ops/sec: 40.25 ±3.53ms @ 3σ
mean: 24.84ms | mode: 24.1ms | min: 21.03ms/21.49ms | max: 28.55ms/37.54ms
describe SuggestEngine
bench large query (2_500 documents)
=> total: 1459.37ms | samples/runs: 96/100 | ops/sec: 68.52 ±2.64ms @ 3σ
mean: 14.59ms | mode: 15ms | min: 12.07ms/12.07ms | max: 17.36ms/25.76ms
bench large query
=> total: 1587.72ms | samples/runs: 95/100 | ops/sec: 62.98 ±4.65ms @ 3σ
mean: 15.88ms | mode: 15ms | min: 12.29ms/12.29ms | max: 21.59ms/37.56ms
describe AutocompleteEngine
bench large query (2_500 documents)
=> total: 1221.65ms | samples/runs: 41/100 | ops/sec: 81.86 ±0.69ms @ 3σ
mean: 12.22ms | mode: 13ms | min: 10.1ms/11.53ms | max: 12.91ms/9.85ms
bench large query
=> total: 1284.09ms | samples/runs: 97/100 | ops/sec: 77.88 ±2.63ms @ 3σ
mean: 12.84ms | mode: 11ms | min: 10.13ms/10.13ms | max: 15.4ms/23.59ms
```

@@ -283,0 +283,0 @@

@@ -5,5 +5,5 @@ import type { ODataSelect } from '../../../lib/odata';

import type { DocumentMiddleware } from '../../searchBackend';
import { AnalyzedValueFullText, PlainAnalysisMode, QueryAnalyzisResult, QueryingStrategy, SimpleMatch } from '../../analyzerService';
import { AnalyzedValueFullText, PlainAnalysisMode, QueryAnalyzisResult, QueryingStrategy, SimpleMatches } from '../../analyzerService';
export declare type AnalyzedSearchable = Searchable & QueryAnalyzisResult;
export declare type SuggestionStrategy<T extends object> = (schemaService: SchemaService<T>) => (searchable: AnalyzedSearchable) => (analyzed: AnalyzedValueFullText, entryMatch: SimpleMatch, fieldIndex: number) => unknown;
export declare type SuggestionStrategy<T extends object> = (schemaService: SchemaService<T>) => (searchable: AnalyzedSearchable) => (suggestionsAccumulator: unknown[], analyzed: AnalyzedValueFullText, entryMatch: SimpleMatches, entryIndex: number) => void;
export declare function useLuceneSearch<T extends object, Keys extends ODataSelect<T>>(options: {

@@ -20,3 +20,9 @@ searchFields: string;

}): SuggestionStrategy<T>;
export declare function createReplacementSuggestionStrategy<T extends object>(options: {
highlight: string;
preTag: string;
postTag: string;
}): SuggestionStrategy<T>;
export declare function createAutocompleteSuggestionStrategy<T extends object>(options: {
search: string;
highlight: string;

@@ -23,0 +29,0 @@ preTag: string;

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc