Tagged Questions
The pipes-filters tag has no wiki summary.
4
votes
2answers
331 views
Comparison of Specification Pattern, Func<T,bool> Predicates and Pipes & Filters
I'm doing some R&D work, and as such am exploring design patterns. I have recently been reading up on the Specification pattern and was referred to this great article.
I was intrigued by the ...
4
votes
1answer
1k views
How do you implement Pipes and Filters pattern with LinqToSQL/Entity Framework/NHibernate?
While building by DAL Repository, I stumbled upon a concept called Pipes and Filters. I read about it here, here and saw a screencast from here. I am still not sure how to go about implementing this ...
1
vote
3answers
403 views
Buffering filtering pipe on Linux
I commonly build up long, multi-command pipes on Linux/Unix to process large text files (sed | grep | sort | less , etc.).
I would like to be able to use a pipeline element that would buffer ...
0
votes
1answer
343 views
ASP.NET MVC with Pipes & Filters Pattern. Benefits?
I'm just about to start a new project on ASP.NET MVC using LINQ to SQL for ORM. So, I have read and watched various tutorials about best practices and I wonder:
What is the benefit on using the ...