Smart IDE needs to index all your project and SDK files to provide code completion and other intelligent features. The index needs to be stored somewhere, so there would be always a tradeoff between intelligence, performance and memory consumption.
If IDE chooses to minimize the memory usage, it will have to store cache on disk and load it when you invoke some feature that requires some data from the cache, you'll get a delay when using a feature, which is unacceptable and will slow down editing.
Of course you want your IDE to be fast. To achieve this, it needs to always have most of the caches and indexes already loaded in memory, but you'll see higher memory usage.
Whether you like it or not, but most modern applications prefer to be faster and consume more RAM, rather than to be slow and consume less RAM. Chrome browser with 5 open tabs will consume more memory than your IDE.
Memory is a cheap resource (unless you have old hardware that you can't upgrade by installing more RAM, like a laptop). Normally developers do not save on hardware. In order to be productive when using IDEs they have systems with at least 8GB of RAM. Developers working with Java and application servers can have even more. The price of 24GB is ~$100-150 now.
Would you save on RAM and then look for a slow or feature limited IDE that can work on your system? Or would you buy better hardware and forget about this resource for several years while enjoying the IDE providing more features and speed?