Hi @Jason Bosco
For 5 M data we have kept the ram size 16 gb in typsense , is it enough, we find the response takes 2-3 seconds. Here is the query which I send from flutter app
final searchParameters = {
'q': '*',
'filter_by': [
if (selfUserId.isNotEmpty) 'id:!=$selfUserId',
statusCodeQuery,
'isPopularUser:!=true',
'profileVerified:=$verifiedProfilesOnly',
'age:[$minimumAge..$maximumAge]',
if (searchAttributes.isNotEmpty) searchAttributeQuery,
if (whatGenderOfMatchesAreYouInterestedIn.isNotEmpty)
'gender:=$whatGenderOfMatchesAreYouInterestedIn',
'geoLocation:($latitude, $longitude, ${distance * (i + 1)} km)',
].join(' && '),
'sort_by': 'geoLocation($latitude, $longitude):asc',
'per_page': '45',
'page': page.toString(),
};