mirror of https://mirror.osredm.com/root/redis.git
Copyright Sanfilipo -> Redis Ltd.
This commit is contained in:
parent
d996eb82ef
commit
13a0a63bef
3
expr.c
3
expr.c
|
@ -3,7 +3,8 @@
|
|||
* general code to be used when we want to tell if a given object (with fields)
|
||||
* passes or fails a given test for scalars, strings, ...
|
||||
*
|
||||
* Copyright(C) 2024-2025 Salvatore Sanfilippo. All Rights Reserved.
|
||||
* Copyright(C) 2024-Present, Redis Ltd. All Rights Reserved.
|
||||
* Originally authored by: Salvatore Sanfilippo.
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
|
|
3
hnsw.c
3
hnsw.c
|
@ -25,7 +25,8 @@
|
|||
* bidirectional), and reliking the nodes orphaned of one link among
|
||||
* them.
|
||||
*
|
||||
* Copyright(C) 2024-2025 Salvatore Sanfilippo. All Rights Reserved.
|
||||
* Copyright(C) 2024-Present, Redis Ltd. All Rights Reserved.
|
||||
* Originally authored by: Salvatore Sanfilippo.
|
||||
*/
|
||||
|
||||
#define _DEFAULT_SOURCE
|
||||
|
|
2
hnsw.h
2
hnsw.h
|
@ -2,7 +2,7 @@
|
|||
* HNSW (Hierarchical Navigable Small World) Implementation
|
||||
* Based on the paper by Yu. A. Malkov, D. A. Yashunin
|
||||
*
|
||||
* Copyright(C) 2024 Salvatore Sanfilippo. All Rights Reserved.
|
||||
* Copyright(C) 2024-Pesent Redis Ltd. All Rights Reserved.
|
||||
*/
|
||||
|
||||
#ifndef HNSW_H
|
||||
|
|
4
vset.c
4
vset.c
|
@ -1,8 +1,8 @@
|
|||
/* Redis implementation for vector sets. The data structure itself
|
||||
* is implemented in hnsw.c.
|
||||
*
|
||||
* Copyright(C) 2024 Salvatore Sanfilippo.
|
||||
* All Rights Reserved.
|
||||
* Copyright(C) 2024-Present, Redis Ltd. All Rights Reserved.
|
||||
* Originally authored by: Salvatore Sanfilippo.
|
||||
*/
|
||||
|
||||
#define _DEFAULT_SOURCE
|
||||
|
|
3
w2v.c
3
w2v.c
|
@ -2,7 +2,8 @@
|
|||
* HNSW (Hierarchical Navigable Small World) Implementation
|
||||
* Based on the paper by Yu. A. Malkov, D. A. Yashunin
|
||||
*
|
||||
* Copyright(C) 2024 Salvatore Sanfilippo. All Rights Reserved.
|
||||
* Copyright(C) 2024-Present, Redis Ltd. All Rights Reserved.
|
||||
* Originally authored by: Salvatore Sanfilippo.
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
|
|
Loading…
Reference in New Issue