You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-07 13:22:56 +03:00
fix GEO* commands
This commit is contained in:
@@ -1,38 +1,27 @@
|
||||
// import { RedisCommandArgument, RedisCommandArguments } from '.';
|
||||
// import { GeoSearchFrom, GeoSearchBy, GeoSearchOptions, pushGeoSearchArguments } from './generic-transformers';
|
||||
import { RedisArgument, NumberReply, Command } from '../RESP/types';
|
||||
import { GeoSearchFrom, GeoSearchBy, GeoSearchOptions, pushGeoSearchArguments } from './GEOSEARCH';
|
||||
|
||||
// export { FIRST_KEY_INDEX, IS_READ_ONLY } from './GEOSEARCH';
|
||||
export interface GeoSearchStoreOptions extends GeoSearchOptions {
|
||||
STOREDIST?: boolean;
|
||||
}
|
||||
|
||||
// interface GeoSearchStoreOptions extends GeoSearchOptions {
|
||||
// STOREDIST?: true;
|
||||
// }
|
||||
export default {
|
||||
FIRST_KEY_INDEX: 1,
|
||||
IS_READ_ONLY: false,
|
||||
transformArguments(
|
||||
destination: RedisArgument,
|
||||
source: RedisArgument,
|
||||
from: GeoSearchFrom,
|
||||
by: GeoSearchBy,
|
||||
options?: GeoSearchStoreOptions
|
||||
) {
|
||||
const args = pushGeoSearchArguments(['GEOSEARCHSTORE', destination], source, from, by, options);
|
||||
|
||||
// export function transformArguments(
|
||||
// destination: RedisCommandArgument,
|
||||
// source: RedisCommandArgument,
|
||||
// from: GeoSearchFrom,
|
||||
// by: GeoSearchBy,
|
||||
// options?: GeoSearchStoreOptions
|
||||
// ): RedisCommandArguments {
|
||||
// const args = pushGeoSearchArguments(
|
||||
// ['GEOSEARCHSTORE', destination],
|
||||
// source,
|
||||
// from,
|
||||
// by,
|
||||
// options
|
||||
// );
|
||||
if (options?.STOREDIST) {
|
||||
args.push('STOREDIST');
|
||||
}
|
||||
|
||||
// if (options?.STOREDIST) {
|
||||
// args.push('STOREDIST');
|
||||
// }
|
||||
|
||||
// return args;
|
||||
// }
|
||||
|
||||
// export function transformReply(reply: number): number {
|
||||
// if (typeof reply !== 'number') {
|
||||
// throw new TypeError(`https://github.com/redis/redis/issues/9261`);
|
||||
// }
|
||||
|
||||
// return reply;
|
||||
// }
|
||||
return args;
|
||||
},
|
||||
transformReply: undefined as unknown as () => NumberReply
|
||||
} as const satisfies Command;
|
||||
|
Reference in New Issue
Block a user