《Elastic Stack 实战手册》——三、产品能力——3.2.核心应用场景——3.2.1.企业搜索 (1) https://developer.aliyun.com/article/1231681
支持文档级别权限
Workspace Search 支持启用源文档权限同步,支持的应用包括:Jira Cloud、Confluence
Cloud、Google Driver、OneDriver、SharePoint Online 等。其他自定义接入的内容源也可以使用 _allow_permissions 和 _deny_permissions fields 字段来配置文档级别权限。如下代码为文档配置权限:
{ "_allow_permissions":[ "permission1" ], "_deny_permissions":[ ], "id":1235, "title":"The Meaning of Sleep", "body":"Rest, recharge, and connect to the Ether.", "url":"https://example.com", "created_at":"2019-06-01T12:00:00+00:00", "type":"list" }
如下代码为用户分配权限:
curl -X POST \ http://localhost:3002/api/ws/v1/sources/[CONTENT_SOURCE_ID]/permissions/[USER_NAME] \ -H "Authorization: Bearer [ACCESS_TOKEN]" \ -H 'Content-Type: application/json' \ -d '{ "permissions":[ "permission1" ] }'
支持 Meta Engine
App Search 支持 Meta Engine。Meta Engine 本身不存储文档,是将多个源文档引擎进行结
合,让用户可以通过搜索单个元引擎,搜索到多个源文档引擎中的内容。
支持自定义搜索体验
在 Workspace Search 搜索栏中输入关键字即可搜索,也可以将 Workspace Search 加入到浏览器搜索引擎中,用户在浏览器地址栏输入关键字即可搜索,搜索体验就像在浏览器中使用 Google 或者百度一样。
用户很容易查看可搜索的内容源、最新内容,也可以按日期检索内容。
《Elastic Stack 实战手册》——三、产品能力——3.2.核心应用场景——3.2.1.企业搜索 (3) https://developer.aliyun.com/article/1231678