Coder Social home page Coder Social logo

linqtosolr's People

Contributors

daniellavrushin avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

linqtosolr's Issues

SoftCommit

How do you see to implement "soft commit" in AddOrUpdate and Delete methods?

Async

Just curious, because I see that your webclient has async code: Are there any plans to implement something like Entity Framework's ToListAsync?

Contact you

Hello, I need some advice on LinqToSolr since I've some question specific to a solr url...it's possible to contact you somehow?
Thanks

Complex objects

One can store complex json objects in string fields. Using the [json]-transformer when querying fl=myField:[json] will return what's in that field as actual json. It's not searchable by Solr though, so such a field will always have indexed="false" stored="true". Wouldn't it be cool if your linq provider was able to detect that one is requesting a complex json object stored as a string in Solr and return that? An even cooler feature would be in-memory filtering of those objects, so a query like

...Where(x => x.SimpleString == "val" && x.ComplexObject.NestedString == "otherval")

is turned into something that first queries Solr, myindex/query?q=SimpleString:val and then does a .Where(x => x.ComplexObject.NestedString == "otherval") on the result in memory

Here's a client that handles serializing/deserializing complex objects

adding /solr/ in request path

I'm testing LinqToSolr and it looks promising for our purposes. However, there is one small issue (so far) that I had to change the code for. In LinqToSolrService.PrepareQueryRequest, you have /solr/ hard-coded in the path. This causes a 404 for us because our paths look like this http://this.that.com/poolname/collectionname/select. Can you make that hard-coded value some sort of optional value?
Thanks!

Add support for BasicAuthentication

Any reason why you disable the HttpBasicAuthenticator in the LinqToSolrService.cs as below:
if (!string.IsNullOrEmpty(Configuration.SolrLogin) && !string.IsNullOrEmpty(Configuration.SolrPassword)) { // Client.Authenticator = new HttpBasicAuthenticator(Configuration.SolrLogin, Configuration.SolrPassword); }

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.