文件名称:search_engine:索引和搜索
文件大小:31KB
文件格式:ZIP
更新时间:2024-05-24 11:41:19
JavaScript
如何使用 首先,启动搜索引擎: $ cargo run --release 它默认为端口3000上的localhost。 接下来,插入数据: $ curl -XPOST 'localhost:3000/index' -d '{ "id": "test", "content": "How to run this search engine" }' 然后,以以下两种方式之一进行搜索: $ curl -XGET 'localhost:3000/search?q=how' 转到localhost:3000并使用搜索栏
【文件预览】:
search_engine-master
----Cargo.lock(14KB)
----LICENSE(1KB)
----src()
--------main.rs(3KB)
----Cargo.toml(336B)
----.gitignore(7B)
----web()
--------search.css(842B)
--------index.html(750B)
--------js()
----README.md(379B)