code wiki / _hdl_build / nx_dss_query.nx
nx_dss_query.nx
buildroot/runtime/_hdl_build/nx_dss_query.nx
about
nx_dss_query.nx -- CLI over the SOVEREIGN seg_store search: nx_dss_query <domain> <term>
Prints ranked cids+scores from the domain's PUBLIC seg_store shard (ss_open->ss_term->ss_hget, no tsv).
Verifies the sovereign path on REAL production shards; the query basis for the /search serve handler. ORIGINAL
dependencies 2 imports · 0 importers
imports: nx_docportal_search_seg.nxnx_itoa_lib.nx
imported by: nobody (leaf or entry point)
call flow from main pre-order; caps 40 nodes / depth 6 declared; ↻ = already shown
structs
| none |
consts
| none |
functions
| 7 | func q_puts(s: *u8) -> i64 { var n: i64 = 0; while s[n] != (0 as u8) { n = n + 1 } sys_write(1, s, n); return 0 } called by 1: main |
| 12 | func q_num(v: i64) -> i64 { nxi_out(v); return 0 } |
| 13 | func q_strlen(s: *u8) -> i64 { var n: i64 = 0; while s[n] != (0 as u8) { n = n + 1 } return n } called by 1: main |
| 15 | func main(argc: i64, argv: *i64) -> i64 |