-
Notifications
You must be signed in to change notification settings - Fork 10.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sql Cache In-Memory OLTP? #28378
Comments
I don't think we have done any deep analysis on it. It's probably not a bad idea, but not something we have scheduled for our team at the moment. |
Seems it might be perfect to use in memory oltp feature in ASP.NET Core Distributed Cache (SqlServer provider) |
Here is my version of SQL In Memory table capable distributed cache implementation with only slight variations for your out of the box SQL Cache provider. You can view it here: https://github.com/xantari/Microsoft.Extensions.Caching.SqlServerInMemory |
We've moved this issue to the Backlog milestone. This means that it is not going to be worked on for the coming release. We will reassess the backlog following the current release and consider this item at that time. To learn more about our issue management process and to have better expectation regarding different types of issues you can read our Triage Process. |
This isn't something we plan to do but feel free to use the implementation from here #28378 (comment) |
@davidfowl Any chance of reconsidering? The only change you need to make to the SQL Server distributed cache provider you deliver today is to change from DateTimeOffset to DateTime2 at the database level and it would work for both in memory tables as well as physical storage based tables. FYI, a full writeup of this issue is documented here: #17640 |
That sounds fine, but we don't test it, so we won't know when it breaks. |
Has having the option of using Sql Server 2014's in-memory OLTP instead of traditional tables been evaluated? It seems like it might be a good fit for a cache, but I'll admit that I have not done a deep dive on in-memory OLTP's capabilities & restrictions yet.
The text was updated successfully, but these errors were encountered: