This is an enhanced search engine for Lemmy. With a few primary goals:
You can choose a preferred instance. After choosing what your primary instance is, and performing a search ALL links will open in that instance.
This aims to be a replacement for using site:reddit.com in Google, but just for the fediverse.
You can filter the search results by:
Instance -- This will filter the results to only show communities that belong to a particular instance. Just type something like instance:lemmy.wrold or instance:https://lemmy.world/. This is separate from your preferred instance, such that you can search for posts on lemmy.world while still opening them on lemmy.ml.
Community -- You can refine the search by a specific community. You use the same syntax that you'd use here community:[email protected].
Author -- Similar to the above you can also filter by a specific author such as: author:@[email protected].
NOTE: This only supports Lemmy instances for now. Other fediverse type instances may be in the future depending on how this works out.
I've been working on this over just the last few weeks, so it hasn't had a chance to crawl much of the fediverse yet. For now it only supports lemmy.world and lemmy.ml but other preferred-instances will come online as time goes by.
If anyone finds any bugs, and I'm sure you will, or if anyone has any suggestions PLEASE raise an issue on GitHub for me to track. Lastly, if anyone wants to help contribute please feel free to reach out.
NOTE TO SERVER ADMINS: You can prevent your site from being crawled by adding lemmy-search to your robots.txt for the user-agent.
Thanks for this! I was trying to figure out how to best replace the old "site:reddit.com" trick, and it did not quite work with lemmy with how it is federated. I hope that longer term we can get an "all" tab on lemmy that truly tries to pull from as many of the federated sites as possible to get us closer to the Reddit experience. I tried to do some research on extreme heat clothing due to the wet bulb temps in my area but r/mensfashion and most other clothing reddits still seemed private, maybe I can try searching with your solution now.
Yes but that search doesn't take you to the instance that you are logged into already. Which is one of my main goals with this site. While that did give me the inspiration for this and has the power of Google behind it, it lacks knowledge about how the fediverse actually works.
Wondering if this will see the same backlash that Mastodon had when users were planning to add a search engine - many users moved to Mastodon specifically because their posts are unsearchable by default, and that prevents some dogpiling that was common on Twitter.
I just don’t get why people would join SOCIAL media if they don’t want to their posts public. Its like having a group meeting in the middle of a public square and complain people saw them
Maybe they should just use discord or or private communities instead
I've already got some complaints about that. You can see one of the issues raised on GitHub.
At the moment, I'm only picking up mastodon posts that are federated to Lemmy, but you can't choose Mastodon as a preferred-instance, yet. When and/if I decide to add Mastodon support, I'll reach out to the admins over there to get feedback first.
Edit and note to any server admin: If you want to block the crawler from hitting your site, just add lemmy-search to your robots.txt and crawling will be prevented. But this doesn't stop cross-federation posts from being picked up on another instance.
Please don’t take those complaints as negative feedback. I don’t think Lemmy is designed to be private and your search engine would be a great of help to the whole community.
By the way, do you plan to create a community to discuss about your search engine? Maybe users can help you with testing or report issues or improvement
I think it makes sense for a “redditlike” to be searchable, while also understanding that Mastodon is a different beast and can benefit from lack of search.
Don’t know if Mastodon posts on Lemmy instances have a specific characteristic, but perhaps you can consider filtering them out while keeping “regular” Lemmy posts and comments?
I think the use case and the default expectations about search are pretty different on Lemmy, but I can definitely see this being a potential point of friction, particularly since most content is actually structured by community rather than instance, and in many cases it would make more sense to exclude stuff based on the community it's posted to or the individual user than by instance. (But I'm sure that wouldn't be immediately technically feasible.)
Lemmy is not private in any way. In fact, while the OP's project is really cool and admirable, there is already https://fedi-search.com, which searches top Lemmy instances (and kbin, Mastodon, and peertube) using regular operators behind the scenes in Google, Bing or DDG (whichever you prefer), because those search engines already crawl Lemmy along with the rest of the internet, unless the site owners block crawling via robots.txt.
This is great! I was so annoyed by the links not going to my home instance that I made this userscript (Lemmy post)! It rewrites all links on all websites to always point to your home instance.
Could be a nice addition for everyone that likes this website :)
Are the search result links not opening on your home instance? If so please raise an issue on GitHub with your home instance URL and I'll investigate. But you should be able to select your home instance from the drop-down and then search and all of the results will have their links direct to that instance. (This does require that your instance has been indexed by the search engine, which as of this moment I've only indexed 278 of the nearly 1000? Lemmy instances out there.)
I think you misunderstood. You were annoyed by links not going to your home instance when searching so you made this website. I was annoyed by all links everywhere not going to my home instance so I wrote the script. They're both tools that help achieve the same thing so I felt right to post mine here, too :)
Holy fuck I've been thinking about how annoying it is that I can't search lemmy for a few days now - and here you are suddenly just handing the tool I want to me with features that I didn't even think about. THANK YOU SO MUCH. Adding this post to my saved.
make those results sort- and exportable (CSV, JSON, XML or the like), and you could be the new redditsearch.io. especially filtering results by different community/time/author would be great, and sorting by length/upvotes. what was that site with reddit post statistics called again? I know, this all might be further out, and wrangling bugs, the changing API and cloudflare might be more pressing issues, but maybe put it on the feature request list somewhere? all the best, and thank you for making this!
There is a public API now. While I won't support sorting, you can process and do what you will with the results as-is. Currently I only support Posts and Communities for now.
When you search for posts you're just matching against the title or body. For communities it's searching the posts within that community.
There's also more filters now with: instance/community/author/since/until and a safe-search option.
So I'm not sure how close this comes to your idea but I thought I'd share.
It might not have been crawled yet. The search engine will periodically search for new content but this isn't instant. So it may take a day or two to find it.
still not working - is this possibly because of the server being overloaded & the crawl not working?
relevant query
PS: is it too much load on your search engine to search across all instances by default? Atm it auto-selects the first in the dropdown list as the preferred instance.
Not wanting to undermine your excellent work, what would be the specific advantage yet, compared to searching for communities / posts via the lemmy page?
I am completly New to lemmy or reddit and still searching for a nice and easy way to find relevant threads for me
Not very knowledgeable on programming, but isn't there a way to implement this code with the Lemmy/fediverse devs to integrate this to the site and afterwards to the different apps used to browse it?
Great contribution regardless, thanks for your work!
See one of my other replies. But that was a thought originally. Just hook into the original database instead of crawling using the APIs. Problem is, the table structure required to search is much different than that of a community form. At least if you want to do searches quickly. It takes me almost 5-10 seconds just to process 50 posts at the moment, and I'm doing those in batches... but ya maybe in the future I can talk to the Lemmy devs and see about merging these two projects?
I really really hope, one of the things I'm loving about the idea of Lemmy or the fediverse is the cooperation aspect, at least in jerboa which is the browser that I am using for now, there is a sense that anyone is pitching in either ideas or actually implementing them, and I guess Lemmy devs are of the same mentality. Anyhow, let's hope you can merge them and optimize in the future, it would be huge, congrats and good job again.
I can't give a timeframe on Kbin yet, as I want to get it as stable as possible with Lemmy. fist. But I think Kbin will probably be next on my radar as the overall structure of the two platforms is very similar.
Thanks, not sure what's going on... I can still see it crawling in the background but ya it's not loading... I'm not anywhere near my bandwidth maximums yet, it doesn't seem.
Eventually. I'm waiting on a bug in Lemmy itself to be fixed. Mainly once I can post a link to a post here and anyone can click on it without leaving their home instance.
Oh wanted to add, as a workaround for now you can set your home instance to lemmy.world or lemmy.ml. Because of how the fediverse works, searching the larger older instances should have a fairly complete copy of content.
Once I do "fix" this though, note that you may click on a link and get a 404 page. As that post may not be on your home instance.
One rule I will always follow for this project is that if I display a link, that link MUST take you to your home instance and that link MUST point to the post in question (but I cannot guarantee that you won't get an error, just that you won't be taken to a completely different post)
@marsara9
I see. Will just set home to the same as the one I search. I'm using Friendica so I'm used to copy links to the search field in order to fetch remote Lemmy posts.
Yes Sam. I'm all on board this lemmy train but that was the one thing I was going to miss from doing my Google searches. Hopefully at some point let me will be popular enough that I can replace most of my forums and searches with Lemmy
This is amazing, nice work! My only criticism at the moment is that on the search results page, the input becomes so squashed that it becomes pointless to use and I’ve gone back to the main screen to redo searches. Giving it its own row, and the search button and drop down their own. should fix that easily.
I should have uploaded a new version that might be easier to use for you. Can you let me know if that's any better? (you may need to clear your browser cache)
Thank you! You are my hero. I was really wondering what I was going to do to replace my "site:reddit.com" search habits in Google and here you come with this wonderful tool.
Heck I wouldn't have to crawl the sites if that was the case. I could just have the data already available. Only problem is, it takes a good 5-10 seconds right now to process 50 posts, so if you think Lemmy is slow/laggy already. With this being a separate site, I can devote 99% of the resources to just scraping the various instances and making the content much easier to search.
Although put this behind a reverse-proxy along side an existing lemmy instance and no one would be the wiser. I'd just need to update it to use the existing database rather than the APIs. ... Some food for thought at least.
Well all of that and convincing the Lemmy team to do the dev work required on their end.
It searches the title and body. It also automatically searches for similar words like. Like 'bike', 'biking', 'bikes' (aka stemming). Granted though, I'm still improving the page ranking as time goes on.
Correct. As I can only provide links to posts that are on your selected home instance. Eventually I'll change this but you'll get a 404 page for links that aren't on your home instance, but see my P.S. below.
P.s. there have been changes to the Lemmy API that have prevented me from getting updates for about a month now. So most of the results you're seeing are from old posts only. Until I can rebuild the crawler or find a new API there won't be any new content.
This looks good, I just found an old (3 year old post - I didn't even know Lemmy was around back then!) and commented on it. There were also funnily two other recent comments (one from 2 months ago and another 3 months old).