Overview
An introduction to the Hyperspace hybrid search database.
Relevant search results
Hyperspace stores vectors and metadata
document = {
'some_counter' : 8, # scalar integer
'visit_times_1y' : ['Saturday, August 21, 2010 11:22:31 AM','Friday, August 20, 2010 7:35:51 AM']
'field0_embeded32' : [0.45,0.99,0.543,0.324], # K elements vector
'field2_int' : None, # null integer
'filed3_float' : 7.45, # scalar float
'filed4_list_float' : [7.459], # list of float - 1 element
'filed5_list_float' : [7.459, 3.4], # list of float - 2 element
'filed6_list_float' : [], # list of float - 0 element
'filed7_str' : None, # scalar string - null
'filed8_str' : 'jojo', # scalar string
'filed10_list_str' : [], # list of string - 0 element
'filed11_list_str' : ['jojo'], # list of string - 1 element
'filed12_list_str' : ['jojo', 'koko'] # list of string - 2 element
# list of time - 2 elements
'filed21_list_ip' : [171.180.143.162, 211.34.144.18, 35.115.68.135]
# list of IPs - 3 elements
# many more fields
}
Creating collections and ingesting documents
Creating hybrid queries
Running the query
Last updated