Sign in
apache
/
ignite
/
refs/heads/IGNITE-7595
/
.
/
docs
/
_docs
/
code-snippets
/
dotnet
/
OnHeapCaching.cs
blob: f3c21c62ac9c5cc5db25443abb2a5a35e1ee92c9 [
file
]
using
Apache
.
Ignite
.
Core
.
Cache
.
Configuration
;
namespace dotnet_helloworld
{
class
OnHeapCaching
{
public
static
void
Run
()
{
// tag::onheap[]
var
cfg
=
new
CacheConfiguration
{
Name
=
"myCache"
,
OnheapCacheEnabled
=
true
};
// end::onheap[]
}
}
}