我有泊坞容器.他们内部推出了一个过程. 
从主机中,该命令top输出在容器内启动的所有进程的pid.
如何找到运行此PID的进程的容器?
谢谢.
在内存优化表中创建哈希索引时,我可以设置变量的值 BUCKET_COUNT
CREATE TABLE [Table1] (
[Id] INT NOT NULL IDENTITY(1,1) PRIMARY KEY NONCLUSTERED HASH 
                                WITH (BUCKET_COUNT = 1000000),
[Name] NVARCHAR(100) NOT NULL
) 
WITH (MEMORY_OPTIMIZED = ON, DURABILITY = SCHEMA_AND_DATA);
Run Code Online (Sandbox Code Playgroud)
该变量的最佳值是多少?
dir中有文件product_uuid和product_serial文件/sys/class/dmi/id/.
我正在为分析器创建一个 CodeFixProvider,用于检测MessagePackObject类声明中是否缺少属性。此外,我的属性需要有一个keyAsPropertyName带值的参数true
[MessagePackObject(keyAsPropertyName:true)]
Run Code Online (Sandbox Code Playgroud)
我已经完成了像这样添加没有参数的属性(我的解决方法)
private async Task<Solution> AddAttributeAsync(Document document, ClassDeclarationSyntax classDecl, CancellationToken cancellationToken)
{
    var root = await document.GetSyntaxRootAsync(cancellationToken);
    var attributes = classDecl.AttributeLists.Add(
        SyntaxFactory.AttributeList(SyntaxFactory.SingletonSeparatedList(
            SyntaxFactory.Attribute(SyntaxFactory.IdentifierName("MessagePackObject"))
        //                    .WithArgumentList(SyntaxFactory.AttributeArgumentList(SyntaxFactory.SingletonSeparatedList(SyntaxFactory.AttributeArgument(SyntaxFactory.("keyAsPropertyName")))))))
        //  .WithArgumentList(...)
        )).NormalizeWhitespace());
    return document.WithSyntaxRoot(
        root.ReplaceNode(
            classDecl,
            classDecl.WithAttributeLists(attributes)
        )).Project.Solution;
}
Run Code Online (Sandbox Code Playgroud)
但我不知道如何添加具有值的参数的属性。有人可以帮我吗?