-
Notifications
You must be signed in to change notification settings - Fork 33
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
How to search a single field of the EncrtypedRow data #64
Comments
Why are you adding two indexes for one? Choose either blind index or compound index, not both. They're not interoperable; a single Compound Index is intended to be computed over multiple fields at once. This adds some overhead. Additionally, the index key will always be distinct for two different indexes, even if you mostly define them the same. (Their names must differ, but that's also a requirement to get more than 1 index out of CipherSweet anyway.) |
Hi, Step:2 Step:3 But if i passed all the values like address:myaddress_line, city:mycity, state:mystate,. country:mycountry, zip:myzip then it gives the same index as 9fbf99d5 I need to search any of the combination or individual field value in compound index to search that if available or not. For example, search with different combination of fields like, Can we do the search like this with compound index? I need the clarification or solution to the above mentioned points that how to do this. If possible please share some examples in PHP Thanks |
Hi,
I have an issue to search a single field value & decrypt the single field value. When i tried to get the compound index for this, i got some new index. But in case, when i had given all the field data, then i got the same compound index.
What is the use of Compound index and how to search the single field data.
If i had used the blind index and it works fine like getting the same index.
For Example, i had use the ssn in blind index, and in compound index i had the fields like ssn, email, hivstatus.
To search data,
when i use to get the blind index for ssn, it returns the same index value
returns Blind Index (ssn_last_four_idx) as 1258bc5e
But when i tried to get compound index only with email, then it returns new compound index
returns Compound Index (ssnlast4_hivstatus_cidx) as 1a1937b2
I need the clarification and help on this issue to achieve the search with compound index and decrypt the same.
Thanks
The text was updated successfully, but these errors were encountered: