From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp46.i.mail.ru (smtp46.i.mail.ru [94.100.177.106]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id 968944696C3 for ; Fri, 3 Apr 2020 16:32:54 +0300 (MSK) Date: Fri, 3 Apr 2020 13:32:53 +0000 From: Nikita Pettik Message-ID: <20200403133253.GD2993@tarantool.org> References: <4ba94f315e947aebf7a723b6e24a6162d8306c98.1585559306.git.k.sosnin@tarantool.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <4ba94f315e947aebf7a723b6e24a6162d8306c98.1585559306.git.k.sosnin@tarantool.org> Subject: Re: [Tarantool-patches] [PATCH 1/4] box: replace session_settings modules with a single array List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Chris Sosnin Cc: tarantool-patches@dev.tarantool.org, v.shpilevoy@tarantool.org On 30 Mar 12:13, Chris Sosnin wrote: > Currently we have an array of modules and each module has > its own array of session_settings. This patch merges these > into one array, as long as it turned out, that we cannot > represent every setting as a part of some module. This > change is also needed for implementing binary search for > _session_settings space. > > Part of #4711, #4712 LGTM