在MarkLogic9中,我有一个用xquery编写的资源服务扩展。它是一个'delete‘端点,所以事务模式是'update’。即,在事务中所做的更改在扩展中不可见。我在https://docs.marklogic.com/guide/app-dev/transactions#id_85012中读到了updates are not visible
在单个会话中,如果我想: // make a query on Foo table to get one instance// commit() or// make the same query on Foo table 我会在这两个查询中得到相同的结果吗?也就是说,是否有必要在单个会话中提交表上的update before查询? 谢谢!