Improving the performance of friends_check_friendship in BuddyPress
Are you using friends_check_friendship() function in your code to test the user friendship relationships. If yes, this post may help you. A slight change in the order of the passed arguments can help us cut down the queries from O(n) to O(1). Let us see it with an example. Say you have the code in your …