Data Field as
typedef struct Info
{
std::string Name;
std::string Address;
...
So on
};
and Want to store data in Redis Here. there may a instance when
some of the field of structure can repeat. How can i make above struct in Redis and store.
There is one condition. if data of same value exist. don't overwrite. add new row.
Like this but it's in Programming Language
std::list<Info> infoList_;
And able to search also;
stateinInfo. For multiple people the value can be same. and I want to search people ofageof 24. Like this. [searching of data is not important ].