-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Add hidden option for index #4348
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
@christophstrobl Would you add it at 3.3.x branch |
Thank you @nayu139 for raising this issue. Please make sure to follow the contribution guidelines and open a Pull Request on GH for the modification you propose. |
Thank you very much! I already open a PR. Thanks for your guide😀
#4349
Add hidden support for index by nayu139 · Pull Request #4349 · spring-projects/spring-data-mongodb
github.com
… 2023年3月28日 16:57,Christoph Strobl ***@***.***> 写道:
Thank you @nayu139 <https://github.com/nayu139> for raising this issue. Please make sure to follow the contribution guidelines <https://github.com/spring-projects/spring-data-build/blob/main/CONTRIBUTING.adoc> and open a Pull Request <https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request> on GH for the modification you propose.
The team will then review the changes and get back to you. Note that reviewing changes can take some time, so please be patient.
The 3.3.x line already has already reached the end date of its support. Generally speaking we do not back port enhancements to older versions which typically only see bug fixes and patch level dependency upgrades.
—
Reply to this email directly, view it on GitHub <#4348 (comment)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AES4WVPV64CEV22HDUK3ZUDW6KRWDANCNFSM6AAAAAAWKG67OQ>.
You are receiving this because you were mentioned.
|
Introduce IndexOptions that can be used to alter an existing index via IndexOperations. See: #4348
I need hidden option when ensureIndex. I have already coded it on my computer, but I don't kown how to push it~
ex:
Index index = new Index();
index.named(indexName).background().hidden();
indexOperations.ensureIndex(index);
and get is hidden when get index info, ex:
indexOperations.getIndexInfo();
The text was updated successfully, but these errors were encountered: