Oleksandr Porunov
Oleksandr Porunov
Partially discussed in `Invalidation` topic here: https://lists.lfaidata.foundation/g/janusgraph-dev/topic/discussion_janusgraph/93326202 Currently we invalidate db-cache only in the next 3 scenarios: 1) Enough time passed (`cache.db-cache-time`). 2) Evicted due to cache size limitation (`cache.db-cache-time`)....
I think this feature might be useful in some situations. For example when we want to remove the edge and then add it with the same id or if we...
ElasticSearch 8 was released a while ago (February 10, 2022). It's now safe to add support for ElasticSearch 8 into JanusGraph.
This PR should not be merged. It's opened just to verify if previously successful builds of dist test are failing now. The targeted chosen commit is: https://github.com/JanusGraph/janusgraph/commit/4246d49cee46d549d752515f3956cd2d59f1fd0a As seen from...
**WIP**: Code blocks doesn't work with this update for some reason Updates mkdocs Signed-off-by: Oleksandr Porunov ----- Thank you for contributing to JanusGraph! In order to streamline the review of...
- [ ] automatically set date to release description in GitHub releases. [Related discussion in PR](https://github.com/JanusGraph/janusgraph/pull/2941#discussion_r785506209) - [ ] Publish snapshot releases for all commits. [Releated discussion in PR](https://github.com/JanusGraph/janusgraph/pull/2941#discussion_r785508294), [Related...
Hello, I see that it can work with keystone v2 but does it support keystone v3? Sincerely, Alexandr
Fixes #792 Signed-off-by: Oleksandr Porunov
Right now this framework could generate controller methods such as: ``` testControllerMethod( param1: string, param2: number, queryParams: { param3?: string; param4: number; }, data: entityDTO ): RestResponse ; ``` This...
With this commit it will be possible to overwrite RestMethodModel instance creation logic by providing custom builder class. This is useful if somebody has additional logic around REST method building...