Ayende Rahien

Results 210 comments of Ayende Rahien

`or (and not search(Description, $p2)` that cannot be valid, right?

Hi, I'm afraid that there isn't any yet. We would be happy to assist in creating one, though. At a glance, it is basically just setting things up to use...

We would be happy to take over and manage any such package. About the cloud versions, we have public API for this here: https://ravendb.net/articles/ravendb-cloud-api-and-other-updates https://api.cloud.ravendb.net/swagger/index.html OpenTelemtry is something we are...

Hi @JohnGalt1717 - I wanted to know if you made any progress here

Thanks, we'll take a deeper look

The issue is `filter CalendarId == "calendar/5-A"` - we aren't supporting that in delete by query. Please use `from "CalendarEvents" where CalendarId == "calendar/5-A"` We should be handling `filter`, though....

You can try running `Voron.Recovery` - but the first thing to do is to check if there has been some corruption on the disk level. Are you hosting RavenDB on...

`AggressivelyCache` is there for a reason - it is a way to mark that there is latency involved in refreshing the cache. If you add a 500 ms delay, does...

You can use the 6.x node.js client to work with 7.0 servers.

On my end: ``` var a = "Book2 ČĐŽŠĆ"; var b = "Book2 čĐŽŠĆ"; Console.WriteLine(a.Equals(StringComparison.OrdinalIgnoreCase)); Console.WriteLine(a.Equals(StringComparison.InvariantCultureIgnoreCase)); Console.WriteLine(a.Equals(StringComparison.CurrentCultureIgnoreCase)); ``` This prints `False` for all results What RavenDB does, effectively, is: ```...